Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Database.getExadbVmClusters
Explore with Pulumi AI
This data source provides the list of Exadb Vm Clusters in Oracle Cloud Infrastructure Database service.
Gets a list of the Exadata VM clusters on Exascale Infrastructure in the specified compartment. Applies to Exadata Database Service on Exascale Infrastructure only.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExadbVmClusters = oci.Database.getExadbVmClusters({
    compartmentId: compartmentId,
    clusterPlacementGroupId: testClusterPlacementGroup.id,
    displayName: exadbVmClusterDisplayName,
    exascaleDbStorageVaultId: testExascaleDbStorageVault.id,
    state: exadbVmClusterState,
});
import pulumi
import pulumi_oci as oci
test_exadb_vm_clusters = oci.Database.get_exadb_vm_clusters(compartment_id=compartment_id,
    cluster_placement_group_id=test_cluster_placement_group["id"],
    display_name=exadb_vm_cluster_display_name,
    exascale_db_storage_vault_id=test_exascale_db_storage_vault["id"],
    state=exadb_vm_cluster_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetExadbVmClusters(ctx, &database.GetExadbVmClustersArgs{
			CompartmentId:            compartmentId,
			ClusterPlacementGroupId:  pulumi.StringRef(testClusterPlacementGroup.Id),
			DisplayName:              pulumi.StringRef(exadbVmClusterDisplayName),
			ExascaleDbStorageVaultId: pulumi.StringRef(testExascaleDbStorageVault.Id),
			State:                    pulumi.StringRef(exadbVmClusterState),
		}, 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 testExadbVmClusters = Oci.Database.GetExadbVmClusters.Invoke(new()
    {
        CompartmentId = compartmentId,
        ClusterPlacementGroupId = testClusterPlacementGroup.Id,
        DisplayName = exadbVmClusterDisplayName,
        ExascaleDbStorageVaultId = testExascaleDbStorageVault.Id,
        State = exadbVmClusterState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetExadbVmClustersArgs;
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 testExadbVmClusters = DatabaseFunctions.getExadbVmClusters(GetExadbVmClustersArgs.builder()
            .compartmentId(compartmentId)
            .clusterPlacementGroupId(testClusterPlacementGroup.id())
            .displayName(exadbVmClusterDisplayName)
            .exascaleDbStorageVaultId(testExascaleDbStorageVault.id())
            .state(exadbVmClusterState)
            .build());
    }
}
variables:
  testExadbVmClusters:
    fn::invoke:
      function: oci:Database:getExadbVmClusters
      arguments:
        compartmentId: ${compartmentId}
        clusterPlacementGroupId: ${testClusterPlacementGroup.id}
        displayName: ${exadbVmClusterDisplayName}
        exascaleDbStorageVaultId: ${testExascaleDbStorageVault.id}
        state: ${exadbVmClusterState}
Using getExadbVmClusters
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 getExadbVmClusters(args: GetExadbVmClustersArgs, opts?: InvokeOptions): Promise<GetExadbVmClustersResult>
function getExadbVmClustersOutput(args: GetExadbVmClustersOutputArgs, opts?: InvokeOptions): Output<GetExadbVmClustersResult>def get_exadb_vm_clusters(cluster_placement_group_id: Optional[str] = None,
                          compartment_id: Optional[str] = None,
                          display_name: Optional[str] = None,
                          exascale_db_storage_vault_id: Optional[str] = None,
                          filters: Optional[Sequence[GetExadbVmClustersFilter]] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetExadbVmClustersResult
def get_exadb_vm_clusters_output(cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
                          compartment_id: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          exascale_db_storage_vault_id: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetExadbVmClustersFilterArgs]]]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetExadbVmClustersResult]func GetExadbVmClusters(ctx *Context, args *GetExadbVmClustersArgs, opts ...InvokeOption) (*GetExadbVmClustersResult, error)
func GetExadbVmClustersOutput(ctx *Context, args *GetExadbVmClustersOutputArgs, opts ...InvokeOption) GetExadbVmClustersResultOutput> Note: This function is named GetExadbVmClusters in the Go SDK.
public static class GetExadbVmClusters 
{
    public static Task<GetExadbVmClustersResult> InvokeAsync(GetExadbVmClustersArgs args, InvokeOptions? opts = null)
    public static Output<GetExadbVmClustersResult> Invoke(GetExadbVmClustersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetExadbVmClustersResult> getExadbVmClusters(GetExadbVmClustersArgs args, InvokeOptions options)
public static Output<GetExadbVmClustersResult> getExadbVmClusters(GetExadbVmClustersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Database/getExadbVmClusters:getExadbVmClusters
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The compartment OCID.
- ClusterPlacement stringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- ExascaleDb stringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- Filters
List<GetExadb Vm Clusters Filter> 
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- CompartmentId string
- The compartment OCID.
- ClusterPlacement stringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- ExascaleDb stringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- Filters
[]GetExadb Vm Clusters Filter 
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- compartmentId String
- The compartment OCID.
- clusterPlacement StringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- exascaleDb StringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- filters
List<GetExadb Vm Clusters Filter> 
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- compartmentId string
- The compartment OCID.
- clusterPlacement stringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- displayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- exascaleDb stringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- filters
GetExadb Vm Clusters Filter[] 
- state string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- compartment_id str
- The compartment OCID.
- cluster_placement_ strgroup_ id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- display_name str
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- exascale_db_ strstorage_ vault_ id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- filters
Sequence[GetExadb Vm Clusters Filter] 
- state str
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- compartmentId String
- The compartment OCID.
- clusterPlacement StringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- exascaleDb StringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- filters List<Property Map>
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
getExadbVmClusters Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment.
- ExadbVm List<GetClusters Exadb Vm Clusters Exadb Vm Cluster> 
- The list of exadb_vm_clusters.
- Id string
- The provider-assigned unique ID for this managed resource.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- DisplayName string
- The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- Filters
List<GetExadb Vm Clusters Filter> 
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- CompartmentId string
- The OCID of the compartment.
- ExadbVm []GetClusters Exadb Vm Clusters Exadb Vm Cluster 
- The list of exadb_vm_clusters.
- Id string
- The provider-assigned unique ID for this managed resource.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- DisplayName string
- The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- Filters
[]GetExadb Vm Clusters Filter 
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- compartmentId String
- The OCID of the compartment.
- exadbVm List<GetClusters Exadb Vm Clusters Exadb Vm Cluster> 
- The list of exadb_vm_clusters.
- id String
- The provider-assigned unique ID for this managed resource.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- displayName String
- The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- filters
List<GetExadb Vm Clusters Filter> 
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- compartmentId string
- The OCID of the compartment.
- exadbVm GetClusters Exadb Vm Clusters Exadb Vm Cluster[] 
- The list of exadb_vm_clusters.
- id string
- The provider-assigned unique ID for this managed resource.
- clusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- displayName string
- The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- filters
GetExadb Vm Clusters Filter[] 
- state string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- compartment_id str
- The OCID of the compartment.
- exadb_vm_ Sequence[Getclusters Exadb Vm Clusters Exadb Vm Cluster] 
- The list of exadb_vm_clusters.
- id str
- The provider-assigned unique ID for this managed resource.
- cluster_placement_ strgroup_ id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- display_name str
- The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascale_db_ strstorage_ vault_ id 
- The OCID of the Exadata Database Storage Vault.
- filters
Sequence[GetExadb Vm Clusters Filter] 
- state str
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- compartmentId String
- The OCID of the compartment.
- exadbVm List<Property Map>Clusters 
- The list of exadb_vm_clusters.
- id String
- The provider-assigned unique ID for this managed resource.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- displayName String
- The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- filters List<Property Map>
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
Supporting Types
GetExadbVmClustersExadbVmCluster      
- AvailabilityDomain string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- BackupNetwork List<string>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- ClusterName string
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- ClusterPlacement stringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- CompartmentId string
- The compartment OCID.
- DataCollection List<GetOptions Exadb Vm Clusters Exadb Vm Cluster Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- ExascaleDb stringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- 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"}
- GiVersion string
- A valid Oracle Grid Infrastructure (GI) software version.
- GridImage stringId 
- Grid Setup will be done using this grid image id.
- GridImage stringType 
- The type of Grid Image
- Hostname string
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
- Id string
- The OCID of the Exadata VM cluster on Exascale Infrastructure.
- IormConfig List<GetCaches Exadb Vm Clusters Exadb Vm Cluster Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- LastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- LicenseModel string
- The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort string
- The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- NodeConfigs List<GetExadb Vm Clusters Exadb Vm Cluster Node Config> 
- The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- NodeResources List<GetExadb Vm Clusters Exadb Vm Cluster Node Resource> 
- The list of node in the Exadata VM cluster on Exascale Infrastructure.
- NsgIds List<string>
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- PrivateZone stringId 
- The private zone ID in which you want DNS records to be created.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanIp List<string>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- ScanListener intPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- ScanListener intPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- SecurityAttributes Dictionary<string, string>
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- SshPublic List<string>Keys 
- The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- SubnetId string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- SubscriptionId string
- The OCID of the subscription with which resource needs to be associated with.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- SystemVersion string
- Operating system version of the image.
- TimeCreated string
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- TimeZone string
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
- VipIds List<string>
- The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- ZoneId string
- The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- AvailabilityDomain string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- BackupNetwork []stringNsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- ClusterName string
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- ClusterPlacement stringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- CompartmentId string
- The compartment OCID.
- DataCollection []GetOptions Exadb Vm Clusters Exadb Vm Cluster Data Collection Option 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- ExascaleDb stringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- 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"}
- GiVersion string
- A valid Oracle Grid Infrastructure (GI) software version.
- GridImage stringId 
- Grid Setup will be done using this grid image id.
- GridImage stringType 
- The type of Grid Image
- Hostname string
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
- Id string
- The OCID of the Exadata VM cluster on Exascale Infrastructure.
- IormConfig []GetCaches Exadb Vm Clusters Exadb Vm Cluster Iorm Config Cach 
- The IORM settings of the Exadata DB system.
- LastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- LicenseModel string
- The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort string
- The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- NodeConfigs []GetExadb Vm Clusters Exadb Vm Cluster Node Config 
- The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- NodeResources []GetExadb Vm Clusters Exadb Vm Cluster Node Resource 
- The list of node in the Exadata VM cluster on Exascale Infrastructure.
- NsgIds []string
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- PrivateZone stringId 
- The private zone ID in which you want DNS records to be created.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanIp []stringIds 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- ScanListener intPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- ScanListener intPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- SecurityAttributes map[string]string
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- SshPublic []stringKeys 
- The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- SubnetId string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- SubscriptionId string
- The OCID of the subscription with which resource needs to be associated with.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- SystemVersion string
- Operating system version of the image.
- TimeCreated string
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- TimeZone string
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
- VipIds []string
- The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- ZoneId string
- The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availabilityDomain String
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- clusterName String
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- clusterPlacement StringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- compartmentId String
- The compartment OCID.
- dataCollection List<GetOptions Exadb Vm Clusters Exadb Vm Cluster Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascaleDb StringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- 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"}
- giVersion String
- A valid Oracle Grid Infrastructure (GI) software version.
- gridImage StringId 
- Grid Setup will be done using this grid image id.
- gridImage StringType 
- The type of Grid Image
- hostname String
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
- id String
- The OCID of the Exadata VM cluster on Exascale Infrastructure.
- iormConfig List<GetCaches Exadb Vm Clusters Exadb Vm Cluster Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- lastUpdate StringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- licenseModel String
- The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort String
- The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- nodeConfigs List<GetExadb Vm Clusters Exadb Vm Cluster Node Config> 
- The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- nodeResources List<GetExadb Vm Clusters Exadb Vm Cluster Node Resource> 
- The list of node in the Exadata VM cluster on Exascale Infrastructure.
- nsgIds List<String>
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- privateZone StringId 
- The private zone ID in which you want DNS records to be created.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanListener IntegerPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener IntegerPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes Map<String,String>
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- subnetId String
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscriptionId String
- The OCID of the subscription with which resource needs to be associated with.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- systemVersion String
- Operating system version of the image.
- timeCreated String
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- timeZone String
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
- vipIds List<String>
- The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zoneId String
- The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availabilityDomain string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupNetwork string[]Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- clusterName string
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- clusterPlacement stringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- compartmentId string
- The compartment OCID.
- dataCollection GetOptions Exadb Vm Clusters Exadb Vm Cluster Data Collection Option[] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascaleDb stringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- {[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"}
- giVersion string
- A valid Oracle Grid Infrastructure (GI) software version.
- gridImage stringId 
- Grid Setup will be done using this grid image id.
- gridImage stringType 
- The type of Grid Image
- hostname string
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
- id string
- The OCID of the Exadata VM cluster on Exascale Infrastructure.
- iormConfig GetCaches Exadb Vm Clusters Exadb Vm Cluster Iorm Config Cach[] 
- The IORM settings of the Exadata DB system.
- lastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- licenseModel string
- The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- listenerPort string
- The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- nodeConfigs GetExadb Vm Clusters Exadb Vm Cluster Node Config[] 
- The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- nodeResources GetExadb Vm Clusters Exadb Vm Cluster Node Resource[] 
- The list of node in the Exadata VM cluster on Exascale Infrastructure.
- nsgIds string[]
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- privateZone stringId 
- The private zone ID in which you want DNS records to be created.
- scanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp string[]Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanListener numberPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener numberPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes {[key: string]: string}
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic string[]Keys 
- The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- subnetId string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscriptionId string
- The OCID of the subscription with which resource needs to be associated with.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- systemVersion string
- Operating system version of the image.
- timeCreated string
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- timeZone string
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
- vipIds string[]
- The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zoneId string
- The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availability_domain str
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup_network_ Sequence[str]nsg_ ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup_subnet_ strid 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- cluster_name str
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- cluster_placement_ strgroup_ id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- compartment_id str
- The compartment OCID.
- data_collection_ Sequence[Getoptions Exadb Vm Clusters Exadb Vm Cluster Data Collection Option] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_name str
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain str
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascale_db_ strstorage_ vault_ id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- 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"}
- gi_version str
- A valid Oracle Grid Infrastructure (GI) software version.
- grid_image_ strid 
- Grid Setup will be done using this grid image id.
- grid_image_ strtype 
- The type of Grid Image
- hostname str
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
- id str
- The OCID of the Exadata VM cluster on Exascale Infrastructure.
- iorm_config_ Sequence[Getcaches Exadb Vm Clusters Exadb Vm Cluster Iorm Config Cach] 
- The IORM settings of the Exadata DB system.
- last_update_ strhistory_ entry_ id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license_model str
- The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle_details str
- Additional information about the current lifecycle state.
- listener_port str
- The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- node_configs Sequence[GetExadb Vm Clusters Exadb Vm Cluster Node Config] 
- The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- node_resources Sequence[GetExadb Vm Clusters Exadb Vm Cluster Node Resource] 
- The list of node in the Exadata VM cluster on Exascale Infrastructure.
- nsg_ids Sequence[str]
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- private_zone_ strid 
- The private zone ID in which you want DNS records to be created.
- scan_dns_ strname 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_dns_ strrecord_ id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_ip_ Sequence[str]ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scan_listener_ intport_ tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan_listener_ intport_ tcp_ ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- security_attributes Mapping[str, str]
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape str
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh_public_ Sequence[str]keys 
- The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state str
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- subnet_id str
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscription_id str
- The OCID of the subscription with which resource needs to be associated with.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system_version str
- Operating system version of the image.
- time_created str
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- time_zone str
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
- vip_ids Sequence[str]
- The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone_id str
- The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availabilityDomain String
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- clusterName String
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- clusterPlacement StringGroup Id 
- A filter to return only resources that match the given cluster placement group ID exactly.
- compartmentId String
- The compartment OCID.
- dataCollection List<Property Map>Options 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascaleDb StringStorage Vault Id 
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
- 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"}
- giVersion String
- A valid Oracle Grid Infrastructure (GI) software version.
- gridImage StringId 
- Grid Setup will be done using this grid image id.
- gridImage StringType 
- The type of Grid Image
- hostname String
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
- id String
- The OCID of the Exadata VM cluster on Exascale Infrastructure.
- iormConfig List<Property Map>Caches 
- The IORM settings of the Exadata DB system.
- lastUpdate StringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- licenseModel String
- The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort String
- The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- nodeConfigs List<Property Map>
- The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- nodeResources List<Property Map>
- The list of node in the Exadata VM cluster on Exascale Infrastructure.
- nsgIds List<String>
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- privateZone StringId 
- The private zone ID in which you want DNS records to be created.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanListener NumberPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener NumberPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes Map<String>
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- subnetId String
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscriptionId String
- The OCID of the subscription with which resource needs to be associated with.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- systemVersion String
- Operating system version of the image.
- timeCreated String
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- timeZone String
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
- vipIds List<String>
- The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zoneId String
- The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
GetExadbVmClustersExadbVmClusterDataCollectionOption         
- IsDiagnostics boolEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- IsDiagnostics boolEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics booleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth booleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident booleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- is_diagnostics_ boolevents_ enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- is_health_ boolmonitoring_ enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- is_incident_ boollogs_ enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
GetExadbVmClustersExadbVmClusterIormConfigCach         
- DbPlans List<GetExadb Vm Clusters Exadb Vm Cluster Iorm Config Cach Db Plan> 
- An array of IORM settings for all the database in the Exadata DB system.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is AUTO.
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- DbPlans []GetExadb Vm Clusters Exadb Vm Cluster Iorm Config Cach Db Plan 
- An array of IORM settings for all the database in the Exadata DB system.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is AUTO.
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- dbPlans List<GetExadb Vm Clusters Exadb Vm Cluster Iorm Config Cach Db Plan> 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is AUTO.
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- dbPlans GetExadb Vm Clusters Exadb Vm Cluster Iorm Config Cach Db Plan[] 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- objective string
- The current value for the IORM objective. The default is AUTO.
- state string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- db_plans Sequence[GetExadb Vm Clusters Exadb Vm Cluster Iorm Config Cach Db Plan] 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycle_details str
- Additional information about the current lifecycle state.
- objective str
- The current value for the IORM objective. The default is AUTO.
- state str
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- dbPlans List<Property Map>
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is AUTO.
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan           
- DbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- FlashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- DbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- FlashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- dbName String
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache StringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Integer
- The relative priority of this database.
- dbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- number
- The relative priority of this database.
- db_name str
- The database name. For the default DbPlan, thedbNameisdefault.
- flash_cache_ strlimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- dbName String
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache StringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Number
- The relative priority of this database.
GetExadbVmClustersExadbVmClusterNodeConfig        
- EnabledEcpu intCount Per Node 
- MemorySize intIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- SnapshotFile intSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- TotalEcpu intCount Per Node 
- TotalFile intSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- VmFile intSystem Storage Size Gbs Per Node 
- The file system storage in GBs for each node.
- EnabledEcpu intCount Per Node 
- MemorySize intIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- SnapshotFile intSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- TotalEcpu intCount Per Node 
- TotalFile intSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- VmFile intSystem Storage Size Gbs Per Node 
- The file system storage in GBs for each node.
- enabledEcpu IntegerCount Per Node 
- memorySize IntegerIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshotFile IntegerSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- totalEcpu IntegerCount Per Node 
- totalFile IntegerSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- vmFile IntegerSystem Storage Size Gbs Per Node 
- The file system storage in GBs for each node.
- enabledEcpu numberCount Per Node 
- memorySize numberIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshotFile numberSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- totalEcpu numberCount Per Node 
- totalFile numberSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- vmFile numberSystem Storage Size Gbs Per Node 
- The file system storage in GBs for each node.
- enabled_ecpu_ intcount_ per_ node 
- memory_size_ intin_ gbs_ per_ node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshot_file_ intsystem_ storage_ size_ gbs_ per_ node 
- The file system storage in GBs for snapshot for each node.
- total_ecpu_ intcount_ per_ node 
- total_file_ intsystem_ storage_ size_ gbs_ per_ node 
- Total file system storage in GBs for each node.
- vm_file_ intsystem_ storage_ size_ gbs_ per_ node 
- The file system storage in GBs for each node.
- enabledEcpu NumberCount Per Node 
- memorySize NumberIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshotFile NumberSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- totalEcpu NumberCount Per Node 
- totalFile NumberSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- vmFile NumberSystem Storage Size Gbs Per Node 
- The file system storage in GBs for each node.
GetExadbVmClustersExadbVmClusterNodeResource        
- NodeHostname string
- The host name for the node.
- NodeId string
- The OCID of the node.
- NodeName string
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- NodeHostname string
- The host name for the node.
- NodeId string
- The OCID of the node.
- NodeName string
- State string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- nodeHostname String
- The host name for the node.
- nodeId String
- The OCID of the node.
- nodeName String
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- nodeHostname string
- The host name for the node.
- nodeId string
- The OCID of the node.
- nodeName string
- state string
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- node_hostname str
- The host name for the node.
- node_id str
- The OCID of the node.
- node_name str
- state str
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
- nodeHostname String
- The host name for the node.
- nodeId String
- The OCID of the node.
- nodeName String
- state String
- A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
GetExadbVmClustersFilter    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.