1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getExadbVmClusters
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.Database.getExadbVmClusters

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 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,
        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,
        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,
    			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,
            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)
                .displayName(exadbVmClusterDisplayName)
                .exascaleDbStorageVaultId(testExascaleDbStorageVault.id())
                .state(exadbVmClusterState)
                .build());
    
        }
    }
    
    variables:
      testExadbVmClusters:
        fn::invoke:
          Function: oci:Database:getExadbVmClusters
          Arguments:
            compartmentId: ${compartmentId}
            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(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(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]
    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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Database/getExadbVmClusters:getExadbVmClusters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The compartment OCID.
    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 List<GetExadbVmClustersFilter>
    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.
    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 []GetExadbVmClustersFilter
    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.
    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 List<GetExadbVmClustersFilter>
    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.
    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 GetExadbVmClustersFilter[]
    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.
    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 Sequence[database.GetExadbVmClustersFilter]
    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.
    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 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.
    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.
    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.
    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.
    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.
    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.
    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 string
    The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
    BackupNetworkNsgIds 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 string
    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.
    CompartmentId string
    The compartment OCID.
    DataCollectionOptions List<GetExadbVmClustersExadbVmClusterDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DefinedTags 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.
    ExascaleDbStorageVaultId string
    A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    GridImageId string
    Grid Setup will be done using this grid image id
    GridImageType string
    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.
    IormConfigCaches List<GetExadbVmClustersExadbVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    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<GetExadbVmClustersExadbVmClusterNodeConfig>
    The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    NodeResources List<GetExadbVmClustersExadbVmClusterNodeResource>
    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.
    PrivateZoneId string
    The private zone ID in which you want DNS records to be created.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanIpIds 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 int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    Shape string
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    SshPublicKeys 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 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.
    SystemTags 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.
    BackupNetworkNsgIds []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 string
    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.
    CompartmentId string
    The compartment OCID.
    DataCollectionOptions []GetExadbVmClustersExadbVmClusterDataCollectionOption
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DefinedTags 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.
    ExascaleDbStorageVaultId string
    A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    GridImageId string
    Grid Setup will be done using this grid image id
    GridImageType string
    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.
    IormConfigCaches []GetExadbVmClustersExadbVmClusterIormConfigCach
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    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 []GetExadbVmClustersExadbVmClusterNodeConfig
    The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    NodeResources []GetExadbVmClustersExadbVmClusterNodeResource
    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.
    PrivateZoneId string
    The private zone ID in which you want DNS records to be created.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanIpIds []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 int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    Shape string
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    SshPublicKeys []string
    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.
    SystemTags 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.
    backupNetworkNsgIds 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 String
    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.
    compartmentId String
    The compartment OCID.
    dataCollectionOptions List<GetExadbVmClustersExadbVmClusterDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags 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.
    exascaleDbStorageVaultId String
    A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageId String
    Grid Setup will be done using this grid image id
    gridImageType String
    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.
    iormConfigCaches List<GetExadbVmClustersExadbVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    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<GetExadbVmClustersExadbVmClusterNodeConfig>
    The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    nodeResources List<GetExadbVmClustersExadbVmClusterNodeResource>
    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.
    privateZoneId String
    The private zone ID in which you want DNS records to be created.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds 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 Integer
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Integer
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape String
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    sshPublicKeys 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 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.
    systemTags 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.
    backupNetworkNsgIds 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 string
    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.
    compartmentId string
    The compartment OCID.
    dataCollectionOptions GetExadbVmClustersExadbVmClusterDataCollectionOption[]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags {[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.
    exascaleDbStorageVaultId string
    A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageId string
    Grid Setup will be done using this grid image id
    gridImageType string
    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.
    iormConfigCaches GetExadbVmClustersExadbVmClusterIormConfigCach[]
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId string
    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 GetExadbVmClustersExadbVmClusterNodeConfig[]
    The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    nodeResources GetExadbVmClustersExadbVmClusterNodeResource[]
    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.
    privateZoneId string
    The private zone ID in which you want DNS records to be created.
    scanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds 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 number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl number
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape string
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    sshPublicKeys string[]
    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.
    systemTags {[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_nsg_ids 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 str
    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.
    compartment_id str
    The compartment OCID.
    data_collection_options Sequence[database.GetExadbVmClustersExadbVmClusterDataCollectionOption]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    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_storage_vault_id str
    A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    gi_version str
    A valid Oracle Grid Infrastructure (GI) software version.
    grid_image_id str
    Grid Setup will be done using this grid image id
    grid_image_type str
    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_caches Sequence[database.GetExadbVmClustersExadbVmClusterIormConfigCach]
    The IORM settings of the Exadata DB system.
    last_update_history_entry_id str
    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[database.GetExadbVmClustersExadbVmClusterNodeConfig]
    The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    node_resources Sequence[database.GetExadbVmClustersExadbVmClusterNodeResource]
    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_id str
    The private zone ID in which you want DNS records to be created.
    scan_dns_name 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 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 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 int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scan_listener_port_tcp_ssl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape str
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    ssh_public_keys 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 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.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    system_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.
    backupNetworkNsgIds 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 String
    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.
    compartmentId String
    The compartment OCID.
    dataCollectionOptions List<Property Map>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags 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.
    exascaleDbStorageVaultId String
    A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageId String
    Grid Setup will be done using this grid image id
    gridImageType String
    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.
    iormConfigCaches List<Property Map>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    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.
    privateZoneId String
    The private zone ID in which you want DNS records to be created.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds 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 Number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Number
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape String
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    sshPublicKeys 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 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.
    systemTags 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

    IsDiagnosticsEventsEnabled 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 List<GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan>
    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 []GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan
    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<GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan>
    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 GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan[]
    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[database.GetExadbVmClustersExadbVmClusterIormConfigCachDbPlan]
    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, the dbName is default.
    FlashCacheLimit string
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    Share int
    The relative priority of this database.
    DbName string
    The database name. For the default DbPlan, the dbName is default.
    FlashCacheLimit string
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    Share int
    The relative priority of this database.
    dbName String
    The database name. For the default DbPlan, the dbName is default.
    flashCacheLimit String
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share Integer
    The relative priority of this database.
    dbName string
    The database name. For the default DbPlan, the dbName is default.
    flashCacheLimit string
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share number
    The relative priority of this database.
    db_name str
    The database name. For the default DbPlan, the dbName is default.
    flash_cache_limit str
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share int
    The relative priority of this database.
    dbName String
    The database name. For the default DbPlan, the dbName is default.
    flashCacheLimit String
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share Number
    The relative priority of this database.

    GetExadbVmClustersExadbVmClusterNodeConfig

    EnabledEcpuCountPerNode int
    MemorySizeInGbsPerNode 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 int
    The file system storage in GBs for snapshot for each node.
    TotalEcpuCountPerNode int
    TotalFileSystemStorageSizeGbsPerNode int
    Total file system storage in GBs for each node.
    VmFileSystemStorageSizeGbsPerNode int
    The file system storage in GBs for each node.
    EnabledEcpuCountPerNode int
    MemorySizeInGbsPerNode 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 int
    The file system storage in GBs for snapshot for each node.
    TotalEcpuCountPerNode int
    TotalFileSystemStorageSizeGbsPerNode int
    Total file system storage in GBs for each node.
    VmFileSystemStorageSizeGbsPerNode int
    The file system storage in GBs for each node.
    enabledEcpuCountPerNode Integer
    memorySizeInGbsPerNode 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 Integer
    The file system storage in GBs for snapshot for each node.
    totalEcpuCountPerNode Integer
    totalFileSystemStorageSizeGbsPerNode Integer
    Total file system storage in GBs for each node.
    vmFileSystemStorageSizeGbsPerNode Integer
    The file system storage in GBs for each node.
    enabledEcpuCountPerNode number
    memorySizeInGbsPerNode 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 number
    The file system storage in GBs for snapshot for each node.
    totalEcpuCountPerNode number
    totalFileSystemStorageSizeGbsPerNode number
    Total file system storage in GBs for each node.
    vmFileSystemStorageSizeGbsPerNode number
    The file system storage in GBs for each node.
    enabled_ecpu_count_per_node int
    memory_size_in_gbs_per_node 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 int
    The file system storage in GBs for snapshot for each node.
    total_ecpu_count_per_node int
    total_file_system_storage_size_gbs_per_node int
    Total file system storage in GBs for each node.
    vm_file_system_storage_size_gbs_per_node int
    The file system storage in GBs for each node.
    enabledEcpuCountPerNode Number
    memorySizeInGbsPerNode 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 Number
    The file system storage in GBs for snapshot for each node.
    totalEcpuCountPerNode Number
    totalFileSystemStorageSizeGbsPerNode Number
    Total file system storage in GBs for each node.
    vmFileSystemStorageSizeGbsPerNode Number
    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

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi