1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getExadbVmClusters
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Database.getExadbVmClusters

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
variables:
  testExadbVmClusters:
    fn::invoke:
      function: oci:Database:getExadbVmClusters
      arguments:
        compartmentId: ${compartmentId}
        clusterPlacementGroupId: ${testClusterPlacementGroup.id}
        displayName: ${exadbVmClusterDisplayName}
        exascaleDbStorageVaultId: ${testExascaleDbStorageVault.id}
        state: ${exadbVmClusterState}
Copy

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>
Copy
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[_database.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[_database.GetExadbVmClustersFilterArgs]]]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetExadbVmClustersResult]
Copy
func GetExadbVmClusters(ctx *Context, args *GetExadbVmClustersArgs, opts ...InvokeOption) (*GetExadbVmClustersResult, error)
func GetExadbVmClustersOutput(ctx *Context, args *GetExadbVmClustersOutputArgs, opts ...InvokeOption) GetExadbVmClustersResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetExadbVmClustersResult> getExadbVmClusters(GetExadbVmClustersArgs args, InvokeOptions options)
public static Output<GetExadbVmClustersResult> getExadbVmClusters(GetExadbVmClustersArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getExadbVmClusters:getExadbVmClusters
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The compartment OCID.
ClusterPlacementGroupId string
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.
ExascaleDbStorageVaultId string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
Filters Changes to this property will trigger replacement. List<GetExadbVmClustersFilter>
State string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
CompartmentId This property is required. string
The compartment OCID.
ClusterPlacementGroupId string
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.
ExascaleDbStorageVaultId string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
Filters Changes to this property will trigger replacement. []GetExadbVmClustersFilter
State string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
clusterPlacementGroupId String
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.
exascaleDbStorageVaultId String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
filters Changes to this property will trigger replacement. List<GetExadbVmClustersFilter>
state String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
compartmentId This property is required. string
The compartment OCID.
clusterPlacementGroupId string
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.
exascaleDbStorageVaultId string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
filters Changes to this property will trigger replacement. GetExadbVmClustersFilter[]
state string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
compartment_id This property is required. str
The compartment OCID.
cluster_placement_group_id str
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_storage_vault_id str
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
filters Changes to this property will trigger replacement. Sequence[database.GetExadbVmClustersFilter]
state str
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
clusterPlacementGroupId String
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.
exascaleDbStorageVaultId String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
filters Changes to this property will trigger replacement. 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.
ExadbVmClusters List<GetExadbVmClustersExadbVmCluster>
The list of exadb_vm_clusters.
Id string
The provider-assigned unique ID for this managed resource.
ClusterPlacementGroupId string
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.
ExascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
Filters List<GetExadbVmClustersFilter>
State string
The current state of the Exadata VM cluster on Exascale Infrastructure.
CompartmentId string
The OCID of the compartment.
ExadbVmClusters []GetExadbVmClustersExadbVmCluster
The list of exadb_vm_clusters.
Id string
The provider-assigned unique ID for this managed resource.
ClusterPlacementGroupId string
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.
ExascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
Filters []GetExadbVmClustersFilter
State string
The current state of the Exadata VM cluster on Exascale Infrastructure.
compartmentId String
The OCID of the compartment.
exadbVmClusters List<GetExadbVmClustersExadbVmCluster>
The list of exadb_vm_clusters.
id String
The provider-assigned unique ID for this managed resource.
clusterPlacementGroupId String
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.
exascaleDbStorageVaultId String
The OCID of the Exadata Database Storage Vault.
filters List<GetExadbVmClustersFilter>
state String
The current state of the Exadata VM cluster on Exascale Infrastructure.
compartmentId string
The OCID of the compartment.
exadbVmClusters GetExadbVmClustersExadbVmCluster[]
The list of exadb_vm_clusters.
id string
The provider-assigned unique ID for this managed resource.
clusterPlacementGroupId string
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.
exascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
filters GetExadbVmClustersFilter[]
state string
The current state of the Exadata VM cluster on Exascale Infrastructure.
compartment_id str
The OCID of the compartment.
exadb_vm_clusters Sequence[database.GetExadbVmClustersExadbVmCluster]
The list of exadb_vm_clusters.
id str
The provider-assigned unique ID for this managed resource.
cluster_placement_group_id str
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_storage_vault_id str
The OCID of the Exadata Database Storage Vault.
filters Sequence[database.GetExadbVmClustersFilter]
state str
The current state of the Exadata VM cluster on Exascale Infrastructure.
compartmentId String
The OCID of the compartment.
exadbVmClusters List<Property Map>
The list of exadb_vm_clusters.
id String
The provider-assigned unique ID for this managed resource.
clusterPlacementGroupId String
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.
exascaleDbStorageVaultId String
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 This property is required. string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
BackupNetworkNsgIds This property is required. List<string>
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.
BackupSubnetId This property is required. string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
ClusterName This property is required. 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.
ClusterPlacementGroupId This property is required. string
A filter to return only resources that match the given cluster placement group ID exactly.
CompartmentId This property is required. string
The compartment OCID.
DataCollectionOptions This property is required. List<GetExadbVmClustersExadbVmClusterDataCollectionOption>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Domain This property is required. 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.
ExascaleDbStorageVaultId This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
FreeformTags This property is required. 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 This property is required. string
A valid Oracle Grid Infrastructure (GI) software version.
GridImageId This property is required. string
Grid Setup will be done using this grid image id.
GridImageType This property is required. string
The type of Grid Image
Hostname This property is required. 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 This property is required. string
The OCID of the Exadata VM cluster on Exascale Infrastructure.
IormConfigCaches This property is required. List<GetExadbVmClustersExadbVmClusterIormConfigCach>
The IORM settings of the Exadata DB system.
LastUpdateHistoryEntryId This property is required. string
The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
LicenseModel This property is required. string
The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
ListenerPort This property is required. string
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
NodeConfigs This property is required. List<GetExadbVmClustersExadbVmClusterNodeConfig>
The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
NodeResources This property is required. List<GetExadbVmClustersExadbVmClusterNodeResource>
The list of node in the Exadata VM cluster on Exascale Infrastructure.
NsgIds This property is required. 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.
PrivateZoneId This property is required. string
The private zone ID in which you want DNS records to be created.
ScanDnsName This property is required. string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
ScanDnsRecordId This property is required. string
The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
ScanIpIds This property is required. List<string>
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.
ScanListenerPortTcp This property is required. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
ScanListenerPortTcpSsl This property is required. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
SecurityAttributes This property is required. 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 This property is required. string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
SshPublicKeys This property is required. List<string>
The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
State This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
SubnetId This property is required. string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
SubscriptionId This property is required. string
The OCID of the subscription with which resource needs to be associated with.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
SystemVersion This property is required. string
Operating system version of the image.
TimeCreated This property is required. string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
TimeZone This property is required. string
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
VipIds This property is required. 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 This property is required. string
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
AvailabilityDomain This property is required. string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
BackupNetworkNsgIds This property is required. []string
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.
BackupSubnetId This property is required. string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
ClusterName This property is required. 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.
ClusterPlacementGroupId This property is required. string
A filter to return only resources that match the given cluster placement group ID exactly.
CompartmentId This property is required. string
The compartment OCID.
DataCollectionOptions This property is required. []GetExadbVmClustersExadbVmClusterDataCollectionOption
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Domain This property is required. 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.
ExascaleDbStorageVaultId This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
FreeformTags This property is required. 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 This property is required. string
A valid Oracle Grid Infrastructure (GI) software version.
GridImageId This property is required. string
Grid Setup will be done using this grid image id.
GridImageType This property is required. string
The type of Grid Image
Hostname This property is required. 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 This property is required. string
The OCID of the Exadata VM cluster on Exascale Infrastructure.
IormConfigCaches This property is required. []GetExadbVmClustersExadbVmClusterIormConfigCach
The IORM settings of the Exadata DB system.
LastUpdateHistoryEntryId This property is required. string
The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
LicenseModel This property is required. string
The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
ListenerPort This property is required. string
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
NodeConfigs This property is required. []GetExadbVmClustersExadbVmClusterNodeConfig
The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
NodeResources This property is required. []GetExadbVmClustersExadbVmClusterNodeResource
The list of node in the Exadata VM cluster on Exascale Infrastructure.
NsgIds This property is required. []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.
PrivateZoneId This property is required. string
The private zone ID in which you want DNS records to be created.
ScanDnsName This property is required. string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
ScanDnsRecordId This property is required. string
The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
ScanIpIds This property is required. []string
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.
ScanListenerPortTcp This property is required. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
ScanListenerPortTcpSsl This property is required. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
SecurityAttributes This property is required. 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 This property is required. string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
SshPublicKeys This property is required. []string
The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
State This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
SubnetId This property is required. string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
SubscriptionId This property is required. string
The OCID of the subscription with which resource needs to be associated with.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
SystemVersion This property is required. string
Operating system version of the image.
TimeCreated This property is required. string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
TimeZone This property is required. string
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
VipIds This property is required. []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 This property is required. string
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
availabilityDomain This property is required. String
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupNetworkNsgIds This property is required. List<String>
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.
backupSubnetId This property is required. String
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
clusterName This property is required. 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.
clusterPlacementGroupId This property is required. String
A filter to return only resources that match the given cluster placement group ID exactly.
compartmentId This property is required. String
The compartment OCID.
dataCollectionOptions This property is required. List<GetExadbVmClustersExadbVmClusterDataCollectionOption>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. 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.
exascaleDbStorageVaultId This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
freeformTags This property is required. 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 This property is required. String
A valid Oracle Grid Infrastructure (GI) software version.
gridImageId This property is required. String
Grid Setup will be done using this grid image id.
gridImageType This property is required. String
The type of Grid Image
hostname This property is required. 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 This property is required. String
The OCID of the Exadata VM cluster on Exascale Infrastructure.
iormConfigCaches This property is required. List<GetExadbVmClustersExadbVmClusterIormConfigCach>
The IORM settings of the Exadata DB system.
lastUpdateHistoryEntryId This property is required. String
The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
licenseModel This property is required. String
The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
listenerPort This property is required. String
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
nodeConfigs This property is required. List<GetExadbVmClustersExadbVmClusterNodeConfig>
The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
nodeResources This property is required. List<GetExadbVmClustersExadbVmClusterNodeResource>
The list of node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds This property is required. 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.
privateZoneId This property is required. String
The private zone ID in which you want DNS records to be created.
scanDnsName This property is required. String
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scanDnsRecordId This property is required. String
The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scanIpIds This property is required. List<String>
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.
scanListenerPortTcp This property is required. Integer
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl This property is required. Integer
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes This property is required. 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 This property is required. String
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys This property is required. List<String>
The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
subnetId This property is required. String
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscriptionId This property is required. String
The OCID of the subscription with which resource needs to be associated with.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
systemVersion This property is required. String
Operating system version of the image.
timeCreated This property is required. String
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
timeZone This property is required. String
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
vipIds This property is required. 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 This property is required. String
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
availabilityDomain This property is required. string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupNetworkNsgIds This property is required. string[]
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.
backupSubnetId This property is required. string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
clusterName This property is required. 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.
clusterPlacementGroupId This property is required. string
A filter to return only resources that match the given cluster placement group ID exactly.
compartmentId This property is required. string
The compartment OCID.
dataCollectionOptions This property is required. GetExadbVmClustersExadbVmClusterDataCollectionOption[]
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. 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.
exascaleDbStorageVaultId This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
freeformTags This property is required. {[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 This property is required. string
A valid Oracle Grid Infrastructure (GI) software version.
gridImageId This property is required. string
Grid Setup will be done using this grid image id.
gridImageType This property is required. string
The type of Grid Image
hostname This property is required. 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 This property is required. string
The OCID of the Exadata VM cluster on Exascale Infrastructure.
iormConfigCaches This property is required. GetExadbVmClustersExadbVmClusterIormConfigCach[]
The IORM settings of the Exadata DB system.
lastUpdateHistoryEntryId This property is required. string
The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
licenseModel This property is required. string
The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
listenerPort This property is required. string
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
nodeConfigs This property is required. GetExadbVmClustersExadbVmClusterNodeConfig[]
The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
nodeResources This property is required. GetExadbVmClustersExadbVmClusterNodeResource[]
The list of node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds This property is required. 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.
privateZoneId This property is required. string
The private zone ID in which you want DNS records to be created.
scanDnsName This property is required. string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scanDnsRecordId This property is required. string
The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scanIpIds This property is required. string[]
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.
scanListenerPortTcp This property is required. number
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl This property is required. number
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes This property is required. {[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 This property is required. string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys This property is required. string[]
The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
subnetId This property is required. string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscriptionId This property is required. string
The OCID of the subscription with which resource needs to be associated with.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
systemVersion This property is required. string
Operating system version of the image.
timeCreated This property is required. string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
timeZone This property is required. string
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
vipIds This property is required. 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 This property is required. string
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
availability_domain This property is required. str
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backup_network_nsg_ids This property is required. Sequence[str]
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_id This property is required. str
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
cluster_name This property is required. 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_group_id This property is required. str
A filter to return only resources that match the given cluster placement group ID exactly.
compartment_id This property is required. str
The compartment OCID.
data_collection_options This property is required. Sequence[database.GetExadbVmClustersExadbVmClusterDataCollectionOption]
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
defined_tags This property is required. 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 This property is required. str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. 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_storage_vault_id This property is required. str
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
freeform_tags This property is required. 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 This property is required. str
A valid Oracle Grid Infrastructure (GI) software version.
grid_image_id This property is required. str
Grid Setup will be done using this grid image id.
grid_image_type This property is required. str
The type of Grid Image
hostname This property is required. 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 This property is required. str
The OCID of the Exadata VM cluster on Exascale Infrastructure.
iorm_config_caches This property is required. Sequence[database.GetExadbVmClustersExadbVmClusterIormConfigCach]
The IORM settings of the Exadata DB system.
last_update_history_entry_id This property is required. str
The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
license_model This property is required. str
The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
listener_port This property is required. str
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
node_configs This property is required. Sequence[database.GetExadbVmClustersExadbVmClusterNodeConfig]
The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
node_resources This property is required. Sequence[database.GetExadbVmClustersExadbVmClusterNodeResource]
The list of node in the Exadata VM cluster on Exascale Infrastructure.
nsg_ids This property is required. 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_id This property is required. str
The private zone ID in which you want DNS records to be created.
scan_dns_name This property is required. str
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scan_dns_record_id This property is required. str
The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scan_ip_ids This property is required. Sequence[str]
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_port_tcp This property is required. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scan_listener_port_tcp_ssl This property is required. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
security_attributes This property is required. 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 This property is required. str
The shape of the Exadata VM cluster on Exascale Infrastructure resource
ssh_public_keys This property is required. Sequence[str]
The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state This property is required. str
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
subnet_id This property is required. str
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscription_id This property is required. str
The OCID of the subscription with which resource needs to be associated with.
system_tags This property is required. 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 This property is required. str
Operating system version of the image.
time_created This property is required. str
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
time_zone This property is required. str
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
vip_ids This property is required. 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 This property is required. str
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
availabilityDomain This property is required. String
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupNetworkNsgIds This property is required. List<String>
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.
backupSubnetId This property is required. String
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
clusterName This property is required. 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.
clusterPlacementGroupId This property is required. String
A filter to return only resources that match the given cluster placement group ID exactly.
compartmentId This property is required. String
The compartment OCID.
dataCollectionOptions This property is required. List<Property Map>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. 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.
exascaleDbStorageVaultId This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
freeformTags This property is required. 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 This property is required. String
A valid Oracle Grid Infrastructure (GI) software version.
gridImageId This property is required. String
Grid Setup will be done using this grid image id.
gridImageType This property is required. String
The type of Grid Image
hostname This property is required. 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 This property is required. String
The OCID of the Exadata VM cluster on Exascale Infrastructure.
iormConfigCaches This property is required. List<Property Map>
The IORM settings of the Exadata DB system.
lastUpdateHistoryEntryId This property is required. String
The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
licenseModel This property is required. String
The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
listenerPort This property is required. String
The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
nodeConfigs This property is required. List<Property Map>
The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
nodeResources This property is required. List<Property Map>
The list of node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds This property is required. 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.
privateZoneId This property is required. String
The private zone ID in which you want DNS records to be created.
scanDnsName This property is required. String
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scanDnsRecordId This property is required. String
The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
scanIpIds This property is required. List<String>
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.
scanListenerPortTcp This property is required. Number
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl This property is required. Number
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes This property is required. 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 This property is required. String
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys This property is required. List<String>
The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
subnetId This property is required. String
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscriptionId This property is required. String
The OCID of the subscription with which resource needs to be associated with.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
systemVersion This property is required. String
Operating system version of the image.
timeCreated This property is required. String
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
timeZone This property is required. String
The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
vipIds This property is required. 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 This property is required. String
The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.

GetExadbVmClustersExadbVmClusterDataCollectionOption

IsDiagnosticsEventsEnabled This property is required. bool
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 UpdateVmCluster or updateCloudVmCluster API.
IsHealthMonitoringEnabled This property is required. bool
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, UpdateCloudVmCluster or updateDbsystem API.
IsIncidentLogsEnabled This property is required. bool
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, updateCloudVmCluster or updateDbsystem API.
IsDiagnosticsEventsEnabled This property is required. bool
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 UpdateVmCluster or updateCloudVmCluster API.
IsHealthMonitoringEnabled This property is required. bool
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, UpdateCloudVmCluster or updateDbsystem API.
IsIncidentLogsEnabled This property is required. bool
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, updateCloudVmCluster or updateDbsystem API.
isDiagnosticsEventsEnabled This property is required. Boolean
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 UpdateVmCluster or updateCloudVmCluster API.
isHealthMonitoringEnabled This property is required. Boolean
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, UpdateCloudVmCluster or updateDbsystem API.
isIncidentLogsEnabled This property is required. Boolean
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, updateCloudVmCluster or updateDbsystem API.
isDiagnosticsEventsEnabled This property is required. boolean
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 UpdateVmCluster or updateCloudVmCluster API.
isHealthMonitoringEnabled This property is required. boolean
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, UpdateCloudVmCluster or updateDbsystem API.
isIncidentLogsEnabled This property is required. boolean
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, updateCloudVmCluster or updateDbsystem API.
is_diagnostics_events_enabled This property is required. bool
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 UpdateVmCluster or updateCloudVmCluster API.
is_health_monitoring_enabled This property is required. bool
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, UpdateCloudVmCluster or updateDbsystem API.
is_incident_logs_enabled This property is required. bool
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, updateCloudVmCluster or updateDbsystem API.
isDiagnosticsEventsEnabled This property is required. Boolean
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 UpdateVmCluster or updateCloudVmCluster API.
isHealthMonitoringEnabled This property is required. Boolean
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, UpdateCloudVmCluster or updateDbsystem API.
isIncidentLogsEnabled This property is required. Boolean
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, updateCloudVmCluster or updateDbsystem API.

GetExadbVmClustersExadbVmClusterIormConfigCach

DbPlans This property is required. List<GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan>
An array of IORM settings for all the database in the Exadata DB system.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
Objective This property is required. string
The current value for the IORM objective. The default is AUTO.
State This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
DbPlans This property is required. []GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan
An array of IORM settings for all the database in the Exadata DB system.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
Objective This property is required. string
The current value for the IORM objective. The default is AUTO.
State This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
dbPlans This property is required. List<GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan>
An array of IORM settings for all the database in the Exadata DB system.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
objective This property is required. String
The current value for the IORM objective. The default is AUTO.
state This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
dbPlans This property is required. GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan[]
An array of IORM settings for all the database in the Exadata DB system.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
objective This property is required. string
The current value for the IORM objective. The default is AUTO.
state This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
db_plans This property is required. Sequence[database.GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan]
An array of IORM settings for all the database in the Exadata DB system.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
objective This property is required. str
The current value for the IORM objective. The default is AUTO.
state This property is required. str
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
dbPlans This property is required. List<Property Map>
An array of IORM settings for all the database in the Exadata DB system.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
objective This property is required. String
The current value for the IORM objective. The default is AUTO.
state This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.

GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan

DbName This property is required. string
The database name. For the default DbPlan, the dbName is default.
FlashCacheLimit This property is required. string
The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
Share This property is required. int
The relative priority of this database.
DbName This property is required. string
The database name. For the default DbPlan, the dbName is default.
FlashCacheLimit This property is required. string
The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
Share This property is required. int
The relative priority of this database.
dbName This property is required. String
The database name. For the default DbPlan, the dbName is default.
flashCacheLimit This property is required. String
The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
share This property is required. Integer
The relative priority of this database.
dbName This property is required. string
The database name. For the default DbPlan, the dbName is default.
flashCacheLimit This property is required. string
The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
share This property is required. number
The relative priority of this database.
db_name This property is required. str
The database name. For the default DbPlan, the dbName is default.
flash_cache_limit This property is required. str
The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
share This property is required. int
The relative priority of this database.
dbName This property is required. String
The database name. For the default DbPlan, the dbName is default.
flashCacheLimit This property is required. String
The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
share This property is required. Number
The relative priority of this database.

GetExadbVmClustersExadbVmClusterNodeConfig

EnabledEcpuCountPerNode This property is required. int
MemorySizeInGbsPerNode This property is required. int
The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
SnapshotFileSystemStorageSizeGbsPerNode This property is required. int
The file system storage in GBs for snapshot for each node.
TotalEcpuCountPerNode This property is required. int
TotalFileSystemStorageSizeGbsPerNode This property is required. int
Total file system storage in GBs for each node.
VmFileSystemStorageSizeGbsPerNode This property is required. int
The file system storage in GBs for each node.
EnabledEcpuCountPerNode This property is required. int
MemorySizeInGbsPerNode This property is required. int
The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
SnapshotFileSystemStorageSizeGbsPerNode This property is required. int
The file system storage in GBs for snapshot for each node.
TotalEcpuCountPerNode This property is required. int
TotalFileSystemStorageSizeGbsPerNode This property is required. int
Total file system storage in GBs for each node.
VmFileSystemStorageSizeGbsPerNode This property is required. int
The file system storage in GBs for each node.
enabledEcpuCountPerNode This property is required. Integer
memorySizeInGbsPerNode This property is required. Integer
The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
snapshotFileSystemStorageSizeGbsPerNode This property is required. Integer
The file system storage in GBs for snapshot for each node.
totalEcpuCountPerNode This property is required. Integer
totalFileSystemStorageSizeGbsPerNode This property is required. Integer
Total file system storage in GBs for each node.
vmFileSystemStorageSizeGbsPerNode This property is required. Integer
The file system storage in GBs for each node.
enabledEcpuCountPerNode This property is required. number
memorySizeInGbsPerNode This property is required. number
The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
snapshotFileSystemStorageSizeGbsPerNode This property is required. number
The file system storage in GBs for snapshot for each node.
totalEcpuCountPerNode This property is required. number
totalFileSystemStorageSizeGbsPerNode This property is required. number
Total file system storage in GBs for each node.
vmFileSystemStorageSizeGbsPerNode This property is required. number
The file system storage in GBs for each node.
enabled_ecpu_count_per_node This property is required. int
memory_size_in_gbs_per_node This property is required. int
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_system_storage_size_gbs_per_node This property is required. int
The file system storage in GBs for snapshot for each node.
total_ecpu_count_per_node This property is required. int
total_file_system_storage_size_gbs_per_node This property is required. int
Total file system storage in GBs for each node.
vm_file_system_storage_size_gbs_per_node This property is required. int
The file system storage in GBs for each node.
enabledEcpuCountPerNode This property is required. Number
memorySizeInGbsPerNode This property is required. Number
The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
snapshotFileSystemStorageSizeGbsPerNode This property is required. Number
The file system storage in GBs for snapshot for each node.
totalEcpuCountPerNode This property is required. Number
totalFileSystemStorageSizeGbsPerNode This property is required. Number
Total file system storage in GBs for each node.
vmFileSystemStorageSizeGbsPerNode This property is required. Number
The file system storage in GBs for each node.

GetExadbVmClustersExadbVmClusterNodeResource

NodeHostname This property is required. string
The host name for the node.
NodeId This property is required. string
The OCID of the node.
NodeName This property is required. string
State This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
NodeHostname This property is required. string
The host name for the node.
NodeId This property is required. string
The OCID of the node.
NodeName This property is required. string
State This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
nodeHostname This property is required. String
The host name for the node.
nodeId This property is required. String
The OCID of the node.
nodeName This property is required. String
state This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
nodeHostname This property is required. string
The host name for the node.
nodeId This property is required. string
The OCID of the node.
nodeName This property is required. string
state This property is required. string
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
node_hostname This property is required. str
The host name for the node.
node_id This property is required. str
The OCID of the node.
node_name This property is required. str
state This property is required. str
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
nodeHostname This property is required. String
The host name for the node.
nodeId This property is required. String
The OCID of the node.
nodeName This property is required. String
state This property is required. String
A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.

GetExadbVmClustersFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. 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.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi