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

oci.Database.ExadbVmCluster

Explore with Pulumi AI

This resource provides the Exadb Vm Cluster resource in Oracle Cloud Infrastructure Database service.

Creates an Exadata VM cluster on Exascale Infrastructure

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testExadbVmCluster = new oci.database.ExadbVmCluster("test_exadb_vm_cluster", {
    availabilityDomain: exadbVmClusterAvailabilityDomain,
    backupSubnetId: testSubnet.id,
    compartmentId: compartmentId,
    displayName: exadbVmClusterDisplayName,
    exascaleDbStorageVaultId: testExascaleDbStorageVault.id,
    gridImageId: testImage.id,
    hostname: exadbVmClusterHostname,
    shape: exadbVmClusterShape,
    nodeConfig: {
        enabledEcpuCountPerNode: exadbVmClusterEnabledEcpuCountPerNode,
        totalEcpuCountPerNode: exadbVmClusterTotalEcpuCountPerNode,
        vmFileSystemStorageSizeGbsPerNode: exadbVmClusterVmFileSystemStorageSizeInGbsPerNode,
    },
    nodeResources: [
        {
            nodeName: "node1",
        },
        {
            nodeName: "node2",
        },
    ],
    sshPublicKeys: exadbVmClusterSshPublicKeys,
    subnetId: testSubnet.id,
    backupNetworkNsgIds: exadbVmClusterBackupNetworkNsgIds,
    clusterName: exadbVmClusterClusterName,
    dataCollectionOptions: {
        isDiagnosticsEventsEnabled: exadbVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled,
        isHealthMonitoringEnabled: exadbVmClusterDataCollectionOptionsIsHealthMonitoringEnabled,
        isIncidentLogsEnabled: exadbVmClusterDataCollectionOptionsIsIncidentLogsEnabled,
    },
    definedTags: exadbVmClusterDefinedTags,
    domain: exadbVmClusterDomain,
    freeformTags: {
        Department: "Finance",
    },
    licenseModel: exadbVmClusterLicenseModel,
    nsgIds: exadbVmClusterNsgIds,
    privateZoneId: testZone.id,
    scanListenerPortTcp: exadbVmClusterScanListenerPortTcp,
    scanListenerPortTcpSsl: exadbVmClusterScanListenerPortTcpSsl,
    securityAttributes: exadbVmClusterSecurityAttributes,
    subscriptionId: tenantSubscriptionId,
    systemVersion: exadbVmClusterSystemVersion,
    timeZone: exadbVmClusterTimeZone,
});
Copy
import pulumi
import pulumi_oci as oci

test_exadb_vm_cluster = oci.database.ExadbVmCluster("test_exadb_vm_cluster",
    availability_domain=exadb_vm_cluster_availability_domain,
    backup_subnet_id=test_subnet["id"],
    compartment_id=compartment_id,
    display_name=exadb_vm_cluster_display_name,
    exascale_db_storage_vault_id=test_exascale_db_storage_vault["id"],
    grid_image_id=test_image["id"],
    hostname=exadb_vm_cluster_hostname,
    shape=exadb_vm_cluster_shape,
    node_config={
        "enabled_ecpu_count_per_node": exadb_vm_cluster_enabled_ecpu_count_per_node,
        "total_ecpu_count_per_node": exadb_vm_cluster_total_ecpu_count_per_node,
        "vm_file_system_storage_size_gbs_per_node": exadb_vm_cluster_vm_file_system_storage_size_in_gbs_per_node,
    },
    node_resources=[
        {
            "node_name": "node1",
        },
        {
            "node_name": "node2",
        },
    ],
    ssh_public_keys=exadb_vm_cluster_ssh_public_keys,
    subnet_id=test_subnet["id"],
    backup_network_nsg_ids=exadb_vm_cluster_backup_network_nsg_ids,
    cluster_name=exadb_vm_cluster_cluster_name,
    data_collection_options={
        "is_diagnostics_events_enabled": exadb_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
        "is_health_monitoring_enabled": exadb_vm_cluster_data_collection_options_is_health_monitoring_enabled,
        "is_incident_logs_enabled": exadb_vm_cluster_data_collection_options_is_incident_logs_enabled,
    },
    defined_tags=exadb_vm_cluster_defined_tags,
    domain=exadb_vm_cluster_domain,
    freeform_tags={
        "Department": "Finance",
    },
    license_model=exadb_vm_cluster_license_model,
    nsg_ids=exadb_vm_cluster_nsg_ids,
    private_zone_id=test_zone["id"],
    scan_listener_port_tcp=exadb_vm_cluster_scan_listener_port_tcp,
    scan_listener_port_tcp_ssl=exadb_vm_cluster_scan_listener_port_tcp_ssl,
    security_attributes=exadb_vm_cluster_security_attributes,
    subscription_id=tenant_subscription_id,
    system_version=exadb_vm_cluster_system_version,
    time_zone=exadb_vm_cluster_time_zone)
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.NewExadbVmCluster(ctx, "test_exadb_vm_cluster", &database.ExadbVmClusterArgs{
			AvailabilityDomain:       pulumi.Any(exadbVmClusterAvailabilityDomain),
			BackupSubnetId:           pulumi.Any(testSubnet.Id),
			CompartmentId:            pulumi.Any(compartmentId),
			DisplayName:              pulumi.Any(exadbVmClusterDisplayName),
			ExascaleDbStorageVaultId: pulumi.Any(testExascaleDbStorageVault.Id),
			GridImageId:              pulumi.Any(testImage.Id),
			Hostname:                 pulumi.Any(exadbVmClusterHostname),
			Shape:                    pulumi.Any(exadbVmClusterShape),
			NodeConfig: &database.ExadbVmClusterNodeConfigArgs{
				EnabledEcpuCountPerNode:           pulumi.Any(exadbVmClusterEnabledEcpuCountPerNode),
				TotalEcpuCountPerNode:             pulumi.Any(exadbVmClusterTotalEcpuCountPerNode),
				VmFileSystemStorageSizeGbsPerNode: pulumi.Any(exadbVmClusterVmFileSystemStorageSizeInGbsPerNode),
			},
			NodeResources: database.ExadbVmClusterNodeResourceArray{
				&database.ExadbVmClusterNodeResourceArgs{
					NodeName: pulumi.String("node1"),
				},
				&database.ExadbVmClusterNodeResourceArgs{
					NodeName: pulumi.String("node2"),
				},
			},
			SshPublicKeys:       pulumi.Any(exadbVmClusterSshPublicKeys),
			SubnetId:            pulumi.Any(testSubnet.Id),
			BackupNetworkNsgIds: pulumi.Any(exadbVmClusterBackupNetworkNsgIds),
			ClusterName:         pulumi.Any(exadbVmClusterClusterName),
			DataCollectionOptions: &database.ExadbVmClusterDataCollectionOptionsArgs{
				IsDiagnosticsEventsEnabled: pulumi.Any(exadbVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled),
				IsHealthMonitoringEnabled:  pulumi.Any(exadbVmClusterDataCollectionOptionsIsHealthMonitoringEnabled),
				IsIncidentLogsEnabled:      pulumi.Any(exadbVmClusterDataCollectionOptionsIsIncidentLogsEnabled),
			},
			DefinedTags: pulumi.Any(exadbVmClusterDefinedTags),
			Domain:      pulumi.Any(exadbVmClusterDomain),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			LicenseModel:           pulumi.Any(exadbVmClusterLicenseModel),
			NsgIds:                 pulumi.Any(exadbVmClusterNsgIds),
			PrivateZoneId:          pulumi.Any(testZone.Id),
			ScanListenerPortTcp:    pulumi.Any(exadbVmClusterScanListenerPortTcp),
			ScanListenerPortTcpSsl: pulumi.Any(exadbVmClusterScanListenerPortTcpSsl),
			SecurityAttributes:     pulumi.Any(exadbVmClusterSecurityAttributes),
			SubscriptionId:         pulumi.Any(tenantSubscriptionId),
			SystemVersion:          pulumi.Any(exadbVmClusterSystemVersion),
			TimeZone:               pulumi.Any(exadbVmClusterTimeZone),
		})
		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 testExadbVmCluster = new Oci.Database.ExadbVmCluster("test_exadb_vm_cluster", new()
    {
        AvailabilityDomain = exadbVmClusterAvailabilityDomain,
        BackupSubnetId = testSubnet.Id,
        CompartmentId = compartmentId,
        DisplayName = exadbVmClusterDisplayName,
        ExascaleDbStorageVaultId = testExascaleDbStorageVault.Id,
        GridImageId = testImage.Id,
        Hostname = exadbVmClusterHostname,
        Shape = exadbVmClusterShape,
        NodeConfig = new Oci.Database.Inputs.ExadbVmClusterNodeConfigArgs
        {
            EnabledEcpuCountPerNode = exadbVmClusterEnabledEcpuCountPerNode,
            TotalEcpuCountPerNode = exadbVmClusterTotalEcpuCountPerNode,
            VmFileSystemStorageSizeGbsPerNode = exadbVmClusterVmFileSystemStorageSizeInGbsPerNode,
        },
        NodeResources = new[]
        {
            new Oci.Database.Inputs.ExadbVmClusterNodeResourceArgs
            {
                NodeName = "node1",
            },
            new Oci.Database.Inputs.ExadbVmClusterNodeResourceArgs
            {
                NodeName = "node2",
            },
        },
        SshPublicKeys = exadbVmClusterSshPublicKeys,
        SubnetId = testSubnet.Id,
        BackupNetworkNsgIds = exadbVmClusterBackupNetworkNsgIds,
        ClusterName = exadbVmClusterClusterName,
        DataCollectionOptions = new Oci.Database.Inputs.ExadbVmClusterDataCollectionOptionsArgs
        {
            IsDiagnosticsEventsEnabled = exadbVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled,
            IsHealthMonitoringEnabled = exadbVmClusterDataCollectionOptionsIsHealthMonitoringEnabled,
            IsIncidentLogsEnabled = exadbVmClusterDataCollectionOptionsIsIncidentLogsEnabled,
        },
        DefinedTags = exadbVmClusterDefinedTags,
        Domain = exadbVmClusterDomain,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        LicenseModel = exadbVmClusterLicenseModel,
        NsgIds = exadbVmClusterNsgIds,
        PrivateZoneId = testZone.Id,
        ScanListenerPortTcp = exadbVmClusterScanListenerPortTcp,
        ScanListenerPortTcpSsl = exadbVmClusterScanListenerPortTcpSsl,
        SecurityAttributes = exadbVmClusterSecurityAttributes,
        SubscriptionId = tenantSubscriptionId,
        SystemVersion = exadbVmClusterSystemVersion,
        TimeZone = exadbVmClusterTimeZone,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.ExadbVmCluster;
import com.pulumi.oci.Database.ExadbVmClusterArgs;
import com.pulumi.oci.Database.inputs.ExadbVmClusterNodeConfigArgs;
import com.pulumi.oci.Database.inputs.ExadbVmClusterNodeResourceArgs;
import com.pulumi.oci.Database.inputs.ExadbVmClusterDataCollectionOptionsArgs;
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) {
        var testExadbVmCluster = new ExadbVmCluster("testExadbVmCluster", ExadbVmClusterArgs.builder()
            .availabilityDomain(exadbVmClusterAvailabilityDomain)
            .backupSubnetId(testSubnet.id())
            .compartmentId(compartmentId)
            .displayName(exadbVmClusterDisplayName)
            .exascaleDbStorageVaultId(testExascaleDbStorageVault.id())
            .gridImageId(testImage.id())
            .hostname(exadbVmClusterHostname)
            .shape(exadbVmClusterShape)
            .nodeConfig(ExadbVmClusterNodeConfigArgs.builder()
                .enabledEcpuCountPerNode(exadbVmClusterEnabledEcpuCountPerNode)
                .totalEcpuCountPerNode(exadbVmClusterTotalEcpuCountPerNode)
                .vmFileSystemStorageSizeGbsPerNode(exadbVmClusterVmFileSystemStorageSizeInGbsPerNode)
                .build())
            .nodeResources(            
                ExadbVmClusterNodeResourceArgs.builder()
                    .nodeName("node1")
                    .build(),
                ExadbVmClusterNodeResourceArgs.builder()
                    .nodeName("node2")
                    .build())
            .sshPublicKeys(exadbVmClusterSshPublicKeys)
            .subnetId(testSubnet.id())
            .backupNetworkNsgIds(exadbVmClusterBackupNetworkNsgIds)
            .clusterName(exadbVmClusterClusterName)
            .dataCollectionOptions(ExadbVmClusterDataCollectionOptionsArgs.builder()
                .isDiagnosticsEventsEnabled(exadbVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled)
                .isHealthMonitoringEnabled(exadbVmClusterDataCollectionOptionsIsHealthMonitoringEnabled)
                .isIncidentLogsEnabled(exadbVmClusterDataCollectionOptionsIsIncidentLogsEnabled)
                .build())
            .definedTags(exadbVmClusterDefinedTags)
            .domain(exadbVmClusterDomain)
            .freeformTags(Map.of("Department", "Finance"))
            .licenseModel(exadbVmClusterLicenseModel)
            .nsgIds(exadbVmClusterNsgIds)
            .privateZoneId(testZone.id())
            .scanListenerPortTcp(exadbVmClusterScanListenerPortTcp)
            .scanListenerPortTcpSsl(exadbVmClusterScanListenerPortTcpSsl)
            .securityAttributes(exadbVmClusterSecurityAttributes)
            .subscriptionId(tenantSubscriptionId)
            .systemVersion(exadbVmClusterSystemVersion)
            .timeZone(exadbVmClusterTimeZone)
            .build());

    }
}
Copy
resources:
  testExadbVmCluster:
    type: oci:Database:ExadbVmCluster
    name: test_exadb_vm_cluster
    properties:
      availabilityDomain: ${exadbVmClusterAvailabilityDomain}
      backupSubnetId: ${testSubnet.id}
      compartmentId: ${compartmentId}
      displayName: ${exadbVmClusterDisplayName}
      exascaleDbStorageVaultId: ${testExascaleDbStorageVault.id}
      gridImageId: ${testImage.id}
      hostname: ${exadbVmClusterHostname}
      shape: ${exadbVmClusterShape}
      nodeConfig:
        enabledEcpuCountPerNode: ${exadbVmClusterEnabledEcpuCountPerNode}
        totalEcpuCountPerNode: ${exadbVmClusterTotalEcpuCountPerNode}
        vmFileSystemStorageSizeGbsPerNode: ${exadbVmClusterVmFileSystemStorageSizeInGbsPerNode}
      nodeResources:
        - nodeName: node1
        - nodeName: node2
      sshPublicKeys: ${exadbVmClusterSshPublicKeys}
      subnetId: ${testSubnet.id}
      backupNetworkNsgIds: ${exadbVmClusterBackupNetworkNsgIds}
      clusterName: ${exadbVmClusterClusterName}
      dataCollectionOptions:
        isDiagnosticsEventsEnabled: ${exadbVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled}
        isHealthMonitoringEnabled: ${exadbVmClusterDataCollectionOptionsIsHealthMonitoringEnabled}
        isIncidentLogsEnabled: ${exadbVmClusterDataCollectionOptionsIsIncidentLogsEnabled}
      definedTags: ${exadbVmClusterDefinedTags}
      domain: ${exadbVmClusterDomain}
      freeformTags:
        Department: Finance
      licenseModel: ${exadbVmClusterLicenseModel}
      nsgIds: ${exadbVmClusterNsgIds}
      privateZoneId: ${testZone.id}
      scanListenerPortTcp: ${exadbVmClusterScanListenerPortTcp}
      scanListenerPortTcpSsl: ${exadbVmClusterScanListenerPortTcpSsl}
      securityAttributes: ${exadbVmClusterSecurityAttributes}
      subscriptionId: ${tenantSubscriptionId}
      systemVersion: ${exadbVmClusterSystemVersion}
      timeZone: ${exadbVmClusterTimeZone}
Copy

Create ExadbVmCluster Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ExadbVmCluster(name: string, args: ExadbVmClusterArgs, opts?: CustomResourceOptions);
@overload
def ExadbVmCluster(resource_name: str,
                   args: ExadbVmClusterArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def ExadbVmCluster(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   grid_image_id: Optional[str] = None,
                   subnet_id: Optional[str] = None,
                   backup_subnet_id: Optional[str] = None,
                   ssh_public_keys: Optional[Sequence[str]] = None,
                   compartment_id: Optional[str] = None,
                   shape: Optional[str] = None,
                   availability_domain: Optional[str] = None,
                   display_name: Optional[str] = None,
                   node_config: Optional[_database.ExadbVmClusterNodeConfigArgs] = None,
                   exascale_db_storage_vault_id: Optional[str] = None,
                   hostname: Optional[str] = None,
                   defined_tags: Optional[Mapping[str, str]] = None,
                   scan_listener_port_tcp: Optional[int] = None,
                   license_model: Optional[str] = None,
                   domain: Optional[str] = None,
                   node_resources: Optional[Sequence[_database.ExadbVmClusterNodeResourceArgs]] = None,
                   nsg_ids: Optional[Sequence[str]] = None,
                   private_zone_id: Optional[str] = None,
                   freeform_tags: Optional[Mapping[str, str]] = None,
                   scan_listener_port_tcp_ssl: Optional[int] = None,
                   security_attributes: Optional[Mapping[str, str]] = None,
                   data_collection_options: Optional[_database.ExadbVmClusterDataCollectionOptionsArgs] = None,
                   cluster_name: Optional[str] = None,
                   backup_network_nsg_ids: Optional[Sequence[str]] = None,
                   subscription_id: Optional[str] = None,
                   system_version: Optional[str] = None,
                   time_zone: Optional[str] = None)
func NewExadbVmCluster(ctx *Context, name string, args ExadbVmClusterArgs, opts ...ResourceOption) (*ExadbVmCluster, error)
public ExadbVmCluster(string name, ExadbVmClusterArgs args, CustomResourceOptions? opts = null)
public ExadbVmCluster(String name, ExadbVmClusterArgs args)
public ExadbVmCluster(String name, ExadbVmClusterArgs args, CustomResourceOptions options)
type: oci:Database:ExadbVmCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExadbVmClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExadbVmClusterArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExadbVmClusterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExadbVmClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExadbVmClusterArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var exadbVmClusterResource = new Oci.Database.ExadbVmCluster("exadbVmClusterResource", new()
{
    GridImageId = "string",
    SubnetId = "string",
    BackupSubnetId = "string",
    SshPublicKeys = new[]
    {
        "string",
    },
    CompartmentId = "string",
    Shape = "string",
    AvailabilityDomain = "string",
    DisplayName = "string",
    NodeConfig = new Oci.Database.Inputs.ExadbVmClusterNodeConfigArgs
    {
        EnabledEcpuCountPerNode = 0,
        TotalEcpuCountPerNode = 0,
        VmFileSystemStorageSizeGbsPerNode = 0,
        MemorySizeInGbsPerNode = 0,
        SnapshotFileSystemStorageSizeGbsPerNode = 0,
        TotalFileSystemStorageSizeGbsPerNode = 0,
    },
    ExascaleDbStorageVaultId = "string",
    Hostname = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    ScanListenerPortTcp = 0,
    LicenseModel = "string",
    Domain = "string",
    NodeResources = new[]
    {
        new Oci.Database.Inputs.ExadbVmClusterNodeResourceArgs
        {
            NodeName = "string",
            NodeHostname = "string",
            NodeId = "string",
            State = "string",
        },
    },
    NsgIds = new[]
    {
        "string",
    },
    PrivateZoneId = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    ScanListenerPortTcpSsl = 0,
    SecurityAttributes = 
    {
        { "string", "string" },
    },
    DataCollectionOptions = new Oci.Database.Inputs.ExadbVmClusterDataCollectionOptionsArgs
    {
        IsDiagnosticsEventsEnabled = false,
        IsHealthMonitoringEnabled = false,
        IsIncidentLogsEnabled = false,
    },
    ClusterName = "string",
    BackupNetworkNsgIds = new[]
    {
        "string",
    },
    SubscriptionId = "string",
    SystemVersion = "string",
    TimeZone = "string",
});
Copy
example, err := Database.NewExadbVmCluster(ctx, "exadbVmClusterResource", &Database.ExadbVmClusterArgs{
	GridImageId:    pulumi.String("string"),
	SubnetId:       pulumi.String("string"),
	BackupSubnetId: pulumi.String("string"),
	SshPublicKeys: pulumi.StringArray{
		pulumi.String("string"),
	},
	CompartmentId:      pulumi.String("string"),
	Shape:              pulumi.String("string"),
	AvailabilityDomain: pulumi.String("string"),
	DisplayName:        pulumi.String("string"),
	NodeConfig: &database.ExadbVmClusterNodeConfigArgs{
		EnabledEcpuCountPerNode:                 pulumi.Int(0),
		TotalEcpuCountPerNode:                   pulumi.Int(0),
		VmFileSystemStorageSizeGbsPerNode:       pulumi.Int(0),
		MemorySizeInGbsPerNode:                  pulumi.Int(0),
		SnapshotFileSystemStorageSizeGbsPerNode: pulumi.Int(0),
		TotalFileSystemStorageSizeGbsPerNode:    pulumi.Int(0),
	},
	ExascaleDbStorageVaultId: pulumi.String("string"),
	Hostname:                 pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ScanListenerPortTcp: pulumi.Int(0),
	LicenseModel:        pulumi.String("string"),
	Domain:              pulumi.String("string"),
	NodeResources: database.ExadbVmClusterNodeResourceArray{
		&database.ExadbVmClusterNodeResourceArgs{
			NodeName:     pulumi.String("string"),
			NodeHostname: pulumi.String("string"),
			NodeId:       pulumi.String("string"),
			State:        pulumi.String("string"),
		},
	},
	NsgIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	PrivateZoneId: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ScanListenerPortTcpSsl: pulumi.Int(0),
	SecurityAttributes: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DataCollectionOptions: &database.ExadbVmClusterDataCollectionOptionsArgs{
		IsDiagnosticsEventsEnabled: pulumi.Bool(false),
		IsHealthMonitoringEnabled:  pulumi.Bool(false),
		IsIncidentLogsEnabled:      pulumi.Bool(false),
	},
	ClusterName: pulumi.String("string"),
	BackupNetworkNsgIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	SubscriptionId: pulumi.String("string"),
	SystemVersion:  pulumi.String("string"),
	TimeZone:       pulumi.String("string"),
})
Copy
var exadbVmClusterResource = new ExadbVmCluster("exadbVmClusterResource", ExadbVmClusterArgs.builder()
    .gridImageId("string")
    .subnetId("string")
    .backupSubnetId("string")
    .sshPublicKeys("string")
    .compartmentId("string")
    .shape("string")
    .availabilityDomain("string")
    .displayName("string")
    .nodeConfig(ExadbVmClusterNodeConfigArgs.builder()
        .enabledEcpuCountPerNode(0)
        .totalEcpuCountPerNode(0)
        .vmFileSystemStorageSizeGbsPerNode(0)
        .memorySizeInGbsPerNode(0)
        .snapshotFileSystemStorageSizeGbsPerNode(0)
        .totalFileSystemStorageSizeGbsPerNode(0)
        .build())
    .exascaleDbStorageVaultId("string")
    .hostname("string")
    .definedTags(Map.of("string", "string"))
    .scanListenerPortTcp(0)
    .licenseModel("string")
    .domain("string")
    .nodeResources(ExadbVmClusterNodeResourceArgs.builder()
        .nodeName("string")
        .nodeHostname("string")
        .nodeId("string")
        .state("string")
        .build())
    .nsgIds("string")
    .privateZoneId("string")
    .freeformTags(Map.of("string", "string"))
    .scanListenerPortTcpSsl(0)
    .securityAttributes(Map.of("string", "string"))
    .dataCollectionOptions(ExadbVmClusterDataCollectionOptionsArgs.builder()
        .isDiagnosticsEventsEnabled(false)
        .isHealthMonitoringEnabled(false)
        .isIncidentLogsEnabled(false)
        .build())
    .clusterName("string")
    .backupNetworkNsgIds("string")
    .subscriptionId("string")
    .systemVersion("string")
    .timeZone("string")
    .build());
Copy
exadb_vm_cluster_resource = oci.database.ExadbVmCluster("exadbVmClusterResource",
    grid_image_id="string",
    subnet_id="string",
    backup_subnet_id="string",
    ssh_public_keys=["string"],
    compartment_id="string",
    shape="string",
    availability_domain="string",
    display_name="string",
    node_config={
        "enabled_ecpu_count_per_node": 0,
        "total_ecpu_count_per_node": 0,
        "vm_file_system_storage_size_gbs_per_node": 0,
        "memory_size_in_gbs_per_node": 0,
        "snapshot_file_system_storage_size_gbs_per_node": 0,
        "total_file_system_storage_size_gbs_per_node": 0,
    },
    exascale_db_storage_vault_id="string",
    hostname="string",
    defined_tags={
        "string": "string",
    },
    scan_listener_port_tcp=0,
    license_model="string",
    domain="string",
    node_resources=[{
        "node_name": "string",
        "node_hostname": "string",
        "node_id": "string",
        "state": "string",
    }],
    nsg_ids=["string"],
    private_zone_id="string",
    freeform_tags={
        "string": "string",
    },
    scan_listener_port_tcp_ssl=0,
    security_attributes={
        "string": "string",
    },
    data_collection_options={
        "is_diagnostics_events_enabled": False,
        "is_health_monitoring_enabled": False,
        "is_incident_logs_enabled": False,
    },
    cluster_name="string",
    backup_network_nsg_ids=["string"],
    subscription_id="string",
    system_version="string",
    time_zone="string")
Copy
const exadbVmClusterResource = new oci.database.ExadbVmCluster("exadbVmClusterResource", {
    gridImageId: "string",
    subnetId: "string",
    backupSubnetId: "string",
    sshPublicKeys: ["string"],
    compartmentId: "string",
    shape: "string",
    availabilityDomain: "string",
    displayName: "string",
    nodeConfig: {
        enabledEcpuCountPerNode: 0,
        totalEcpuCountPerNode: 0,
        vmFileSystemStorageSizeGbsPerNode: 0,
        memorySizeInGbsPerNode: 0,
        snapshotFileSystemStorageSizeGbsPerNode: 0,
        totalFileSystemStorageSizeGbsPerNode: 0,
    },
    exascaleDbStorageVaultId: "string",
    hostname: "string",
    definedTags: {
        string: "string",
    },
    scanListenerPortTcp: 0,
    licenseModel: "string",
    domain: "string",
    nodeResources: [{
        nodeName: "string",
        nodeHostname: "string",
        nodeId: "string",
        state: "string",
    }],
    nsgIds: ["string"],
    privateZoneId: "string",
    freeformTags: {
        string: "string",
    },
    scanListenerPortTcpSsl: 0,
    securityAttributes: {
        string: "string",
    },
    dataCollectionOptions: {
        isDiagnosticsEventsEnabled: false,
        isHealthMonitoringEnabled: false,
        isIncidentLogsEnabled: false,
    },
    clusterName: "string",
    backupNetworkNsgIds: ["string"],
    subscriptionId: "string",
    systemVersion: "string",
    timeZone: "string",
});
Copy
type: oci:Database:ExadbVmCluster
properties:
    availabilityDomain: string
    backupNetworkNsgIds:
        - string
    backupSubnetId: string
    clusterName: string
    compartmentId: string
    dataCollectionOptions:
        isDiagnosticsEventsEnabled: false
        isHealthMonitoringEnabled: false
        isIncidentLogsEnabled: false
    definedTags:
        string: string
    displayName: string
    domain: string
    exascaleDbStorageVaultId: string
    freeformTags:
        string: string
    gridImageId: string
    hostname: string
    licenseModel: string
    nodeConfig:
        enabledEcpuCountPerNode: 0
        memorySizeInGbsPerNode: 0
        snapshotFileSystemStorageSizeGbsPerNode: 0
        totalEcpuCountPerNode: 0
        totalFileSystemStorageSizeGbsPerNode: 0
        vmFileSystemStorageSizeGbsPerNode: 0
    nodeResources:
        - nodeHostname: string
          nodeId: string
          nodeName: string
          state: string
    nsgIds:
        - string
    privateZoneId: string
    scanListenerPortTcp: 0
    scanListenerPortTcpSsl: 0
    securityAttributes:
        string: string
    shape: string
    sshPublicKeys:
        - string
    subnetId: string
    subscriptionId: string
    systemVersion: string
    timeZone: string
Copy

ExadbVmCluster Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ExadbVmCluster resource accepts the following input properties:

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
BackupSubnetId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DisplayName This property is required. string
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
ExascaleDbStorageVaultId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the Exadata Database Storage Vault.
GridImageId This property is required. string

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

Hostname
This property is required.
Changes to this property will trigger replacement.
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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

NodeConfig This property is required. ExadbVmClusterNodeConfig
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
Shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
SshPublicKeys This property is required. List<string>
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
SubnetId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
BackupNetworkNsgIds List<string>
(Updatable) 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.
ClusterName Changes to this property will trigger replacement. 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.
DataCollectionOptions ExadbVmClusterDataCollectionOptions
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Domain Changes to this property will trigger replacement. 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.
FreeformTags Dictionary<string, string>
(Updatable) 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"}
LicenseModel string
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
NodeResources List<ExadbVmClusterNodeResource>
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
NsgIds List<string>
(Updatable) 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 Changes to this property will trigger replacement. string
The private zone ID in which you want DNS records to be created.
ScanListenerPortTcp Changes to this property will trigger replacement. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
ScanListenerPortTcpSsl Changes to this property will trigger replacement. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
SecurityAttributes Dictionary<string, string>
(Updatable) 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"}}}
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
SystemVersion string
(Updatable) Operating system version of the image.
TimeZone Changes to this property will trigger replacement. string

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
BackupSubnetId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DisplayName This property is required. string
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
ExascaleDbStorageVaultId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the Exadata Database Storage Vault.
GridImageId This property is required. string

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

Hostname
This property is required.
Changes to this property will trigger replacement.
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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

NodeConfig This property is required. ExadbVmClusterNodeConfigArgs
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
Shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
SshPublicKeys This property is required. []string
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
SubnetId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
BackupNetworkNsgIds []string
(Updatable) 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.
ClusterName Changes to this property will trigger replacement. 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.
DataCollectionOptions ExadbVmClusterDataCollectionOptionsArgs
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Domain Changes to this property will trigger replacement. 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.
FreeformTags map[string]string
(Updatable) 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"}
LicenseModel string
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
NodeResources []ExadbVmClusterNodeResourceArgs
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
NsgIds []string
(Updatable) 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 Changes to this property will trigger replacement. string
The private zone ID in which you want DNS records to be created.
ScanListenerPortTcp Changes to this property will trigger replacement. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
ScanListenerPortTcpSsl Changes to this property will trigger replacement. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
SecurityAttributes map[string]string
(Updatable) 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"}}}
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
SystemVersion string
(Updatable) Operating system version of the image.
TimeZone Changes to this property will trigger replacement. string

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupSubnetId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
displayName This property is required. String
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
exascaleDbStorageVaultId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the Exadata Database Storage Vault.
gridImageId This property is required. String

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

hostname
This property is required.
Changes to this property will trigger replacement.
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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

nodeConfig This property is required. ExadbVmClusterNodeConfig
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
shape
This property is required.
Changes to this property will trigger replacement.
String
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys This property is required. List<String>
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
subnetId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
backupNetworkNsgIds List<String>
(Updatable) 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.
clusterName Changes to this property will trigger replacement. 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.
dataCollectionOptions ExadbVmClusterDataCollectionOptions
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
domain Changes to this property will trigger replacement. 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.
freeformTags Map<String,String>
(Updatable) 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"}
licenseModel String
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
nodeResources List<ExadbVmClusterNodeResource>
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds List<String>
(Updatable) 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 Changes to this property will trigger replacement. String
The private zone ID in which you want DNS records to be created.
scanListenerPortTcp Changes to this property will trigger replacement. Integer
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl Changes to this property will trigger replacement. Integer
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes Map<String,String>
(Updatable) 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"}}}
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
systemVersion String
(Updatable) Operating system version of the image.
timeZone Changes to this property will trigger replacement. String

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupSubnetId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
compartmentId This property is required. string
(Updatable) The OCID of the compartment.
displayName This property is required. string
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
exascaleDbStorageVaultId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the Exadata Database Storage Vault.
gridImageId This property is required. string

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

hostname
This property is required.
Changes to this property will trigger replacement.
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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

nodeConfig This property is required. ExadbVmClusterNodeConfig
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys This property is required. string[]
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
subnetId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
backupNetworkNsgIds string[]
(Updatable) 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.
clusterName Changes to this property will trigger replacement. 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.
dataCollectionOptions ExadbVmClusterDataCollectionOptions
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
domain Changes to this property will trigger replacement. 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.
freeformTags {[key: string]: string}
(Updatable) 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"}
licenseModel string
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
nodeResources ExadbVmClusterNodeResource[]
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds string[]
(Updatable) 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 Changes to this property will trigger replacement. string
The private zone ID in which you want DNS records to be created.
scanListenerPortTcp Changes to this property will trigger replacement. number
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl Changes to this property will trigger replacement. number
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes {[key: string]: string}
(Updatable) 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"}}}
subscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
systemVersion string
(Updatable) Operating system version of the image.
timeZone Changes to this property will trigger replacement. string

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availability_domain
This property is required.
Changes to this property will trigger replacement.
str
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backup_subnet_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
compartment_id This property is required. str
(Updatable) The OCID of the compartment.
display_name This property is required. str
(Updatable) 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
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the Exadata Database Storage Vault.
grid_image_id This property is required. str

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

hostname
This property is required.
Changes to this property will trigger replacement.
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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

node_config This property is required. database.ExadbVmClusterNodeConfigArgs
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
shape
This property is required.
Changes to this property will trigger replacement.
str
The shape of the Exadata VM cluster on Exascale Infrastructure resource
ssh_public_keys This property is required. Sequence[str]
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
subnet_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
backup_network_nsg_ids Sequence[str]
(Updatable) 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.
cluster_name Changes to this property will trigger replacement. 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.
data_collection_options database.ExadbVmClusterDataCollectionOptionsArgs
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
domain Changes to this property will trigger replacement. 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.
freeform_tags Mapping[str, str]
(Updatable) 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"}
license_model str
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
node_resources Sequence[database.ExadbVmClusterNodeResourceArgs]
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsg_ids Sequence[str]
(Updatable) 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 Changes to this property will trigger replacement. str
The private zone ID in which you want DNS records to be created.
scan_listener_port_tcp Changes to this property will trigger replacement. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scan_listener_port_tcp_ssl Changes to this property will trigger replacement. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
security_attributes Mapping[str, str]
(Updatable) 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"}}}
subscription_id Changes to this property will trigger replacement. str
The OCID of the subscription with which resource needs to be associated with.
system_version str
(Updatable) Operating system version of the image.
time_zone Changes to this property will trigger replacement. str

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupSubnetId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
displayName This property is required. String
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
exascaleDbStorageVaultId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the Exadata Database Storage Vault.
gridImageId This property is required. String

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

hostname
This property is required.
Changes to this property will trigger replacement.
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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

nodeConfig This property is required. Property Map
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
shape
This property is required.
Changes to this property will trigger replacement.
String
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys This property is required. List<String>
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
subnetId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
backupNetworkNsgIds List<String>
(Updatable) 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.
clusterName Changes to this property will trigger replacement. 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.
dataCollectionOptions Property Map
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
domain Changes to this property will trigger replacement. 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.
freeformTags Map<String>
(Updatable) 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"}
licenseModel String
(Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
nodeResources List<Property Map>
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds List<String>
(Updatable) 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 Changes to this property will trigger replacement. String
The private zone ID in which you want DNS records to be created.
scanListenerPortTcp Changes to this property will trigger replacement. Number
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl Changes to this property will trigger replacement. Number
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes Map<String>
(Updatable) 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"}}}
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
systemVersion String
(Updatable) Operating system version of the image.
timeZone Changes to this property will trigger replacement. String

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

All input properties are implicitly available as output properties. Additionally, the ExadbVmCluster resource produces the following output properties:

ClusterPlacementGroupId string
The OCID of the cluster placement group of the Exadata Infrastructure.
GiVersion string
A valid Oracle Grid Infrastructure (GI) software version.
GridImageType string
The type of Grid Image
Id string
The provider-assigned unique ID for this managed resource.
IormConfigCaches List<ExadbVmClusterIormConfigCach>
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.
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.
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.
State string
The current state of 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.
TimeCreated string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
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.
ClusterPlacementGroupId string
The OCID of the cluster placement group of the Exadata Infrastructure.
GiVersion string
A valid Oracle Grid Infrastructure (GI) software version.
GridImageType string
The type of Grid Image
Id string
The provider-assigned unique ID for this managed resource.
IormConfigCaches []ExadbVmClusterIormConfigCach
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.
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.
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.
State string
The current state of 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.
TimeCreated string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
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.
clusterPlacementGroupId String
The OCID of the cluster placement group of the Exadata Infrastructure.
giVersion String
A valid Oracle Grid Infrastructure (GI) software version.
gridImageType String
The type of Grid Image
id String
The provider-assigned unique ID for this managed resource.
iormConfigCaches List<ExadbVmClusterIormConfigCach>
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.
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.
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.
state String
The current state of 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.
timeCreated String
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
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.
clusterPlacementGroupId string
The OCID of the cluster placement group of the Exadata Infrastructure.
giVersion string
A valid Oracle Grid Infrastructure (GI) software version.
gridImageType string
The type of Grid Image
id string
The provider-assigned unique ID for this managed resource.
iormConfigCaches ExadbVmClusterIormConfigCach[]
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.
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.
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.
state string
The current state of 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.
timeCreated string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
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.
cluster_placement_group_id str
The OCID of the cluster placement group of the Exadata Infrastructure.
gi_version str
A valid Oracle Grid Infrastructure (GI) software version.
grid_image_type str
The type of Grid Image
id str
The provider-assigned unique ID for this managed resource.
iorm_config_caches Sequence[database.ExadbVmClusterIormConfigCach]
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.
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.
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.
state str
The current state of 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.
time_created str
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
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.
clusterPlacementGroupId String
The OCID of the cluster placement group of the Exadata Infrastructure.
giVersion String
A valid Oracle Grid Infrastructure (GI) software version.
gridImageType String
The type of Grid Image
id String
The provider-assigned unique ID for this managed resource.
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.
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.
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.
state String
The current state of 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.
timeCreated String
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
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.

Look up Existing ExadbVmCluster Resource

Get an existing ExadbVmCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ExadbVmClusterState, opts?: CustomResourceOptions): ExadbVmCluster
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        availability_domain: Optional[str] = None,
        backup_network_nsg_ids: Optional[Sequence[str]] = None,
        backup_subnet_id: Optional[str] = None,
        cluster_name: Optional[str] = None,
        cluster_placement_group_id: Optional[str] = None,
        compartment_id: Optional[str] = None,
        data_collection_options: Optional[_database.ExadbVmClusterDataCollectionOptionsArgs] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        domain: Optional[str] = None,
        exascale_db_storage_vault_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        gi_version: Optional[str] = None,
        grid_image_id: Optional[str] = None,
        grid_image_type: Optional[str] = None,
        hostname: Optional[str] = None,
        iorm_config_caches: Optional[Sequence[_database.ExadbVmClusterIormConfigCachArgs]] = None,
        last_update_history_entry_id: Optional[str] = None,
        license_model: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        listener_port: Optional[str] = None,
        node_config: Optional[_database.ExadbVmClusterNodeConfigArgs] = None,
        node_resources: Optional[Sequence[_database.ExadbVmClusterNodeResourceArgs]] = None,
        nsg_ids: Optional[Sequence[str]] = None,
        private_zone_id: Optional[str] = None,
        scan_dns_name: Optional[str] = None,
        scan_dns_record_id: Optional[str] = None,
        scan_ip_ids: Optional[Sequence[str]] = None,
        scan_listener_port_tcp: Optional[int] = None,
        scan_listener_port_tcp_ssl: Optional[int] = None,
        security_attributes: Optional[Mapping[str, str]] = None,
        shape: Optional[str] = None,
        ssh_public_keys: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        subnet_id: Optional[str] = None,
        subscription_id: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        system_version: Optional[str] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None,
        vip_ids: Optional[Sequence[str]] = None,
        zone_id: Optional[str] = None) -> ExadbVmCluster
func GetExadbVmCluster(ctx *Context, name string, id IDInput, state *ExadbVmClusterState, opts ...ResourceOption) (*ExadbVmCluster, error)
public static ExadbVmCluster Get(string name, Input<string> id, ExadbVmClusterState? state, CustomResourceOptions? opts = null)
public static ExadbVmCluster get(String name, Output<String> id, ExadbVmClusterState state, CustomResourceOptions options)
resources:  _:    type: oci:Database:ExadbVmCluster    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AvailabilityDomain Changes to this property will trigger replacement. string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
BackupNetworkNsgIds List<string>
(Updatable) 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 Changes to this property will trigger replacement. string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
ClusterName Changes to this property will trigger replacement. 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 string
The OCID of the cluster placement group of the Exadata Infrastructure.
CompartmentId string
(Updatable) The OCID of the compartment.
DataCollectionOptions ExadbVmClusterDataCollectionOptions
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
Domain Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The OCID of the Exadata Database Storage Vault.
FreeformTags Dictionary<string, string>
(Updatable) 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

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

GridImageType string
The type of Grid Image
Hostname Changes to this property will trigger replacement. 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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

IormConfigCaches List<ExadbVmClusterIormConfigCach>
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
(Updatable) 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.
NodeConfig ExadbVmClusterNodeConfig
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
NodeResources List<ExadbVmClusterNodeResource>
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
NsgIds List<string>
(Updatable) 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
ScanListenerPortTcpSsl Changes to this property will trigger replacement. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
SecurityAttributes Dictionary<string, string>
(Updatable) 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 Changes to this property will trigger replacement. string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
SshPublicKeys List<string>
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
State string
The current state of the Exadata VM cluster on Exascale Infrastructure.
SubnetId Changes to this property will trigger replacement. string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
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
(Updatable) Operating system version of the image.
TimeCreated string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
TimeZone Changes to this property will trigger replacement. string

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

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 Changes to this property will trigger replacement. string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
BackupNetworkNsgIds []string
(Updatable) 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 Changes to this property will trigger replacement. string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
ClusterName Changes to this property will trigger replacement. 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 string
The OCID of the cluster placement group of the Exadata Infrastructure.
CompartmentId string
(Updatable) The OCID of the compartment.
DataCollectionOptions ExadbVmClusterDataCollectionOptionsArgs
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
Domain Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The OCID of the Exadata Database Storage Vault.
FreeformTags map[string]string
(Updatable) 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

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

GridImageType string
The type of Grid Image
Hostname Changes to this property will trigger replacement. 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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

IormConfigCaches []ExadbVmClusterIormConfigCachArgs
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
(Updatable) 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.
NodeConfig ExadbVmClusterNodeConfigArgs
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
NodeResources []ExadbVmClusterNodeResourceArgs
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
NsgIds []string
(Updatable) 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
ScanListenerPortTcpSsl Changes to this property will trigger replacement. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
SecurityAttributes map[string]string
(Updatable) 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 Changes to this property will trigger replacement. string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
SshPublicKeys []string
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
State string
The current state of the Exadata VM cluster on Exascale Infrastructure.
SubnetId Changes to this property will trigger replacement. string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
SubscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
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
(Updatable) Operating system version of the image.
TimeCreated string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
TimeZone Changes to this property will trigger replacement. string

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

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 Changes to this property will trigger replacement. String
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupNetworkNsgIds List<String>
(Updatable) 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 Changes to this property will trigger replacement. String
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
clusterName Changes to this property will trigger replacement. 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 String
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId String
(Updatable) The OCID of the compartment.
dataCollectionOptions ExadbVmClusterDataCollectionOptions
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
domain Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
The OCID of the Exadata Database Storage Vault.
freeformTags Map<String,String>
(Updatable) 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

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

gridImageType String
The type of Grid Image
hostname Changes to this property will trigger replacement. 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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

iormConfigCaches List<ExadbVmClusterIormConfigCach>
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
(Updatable) 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.
nodeConfig ExadbVmClusterNodeConfig
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
nodeResources List<ExadbVmClusterNodeResource>
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds List<String>
(Updatable) 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. Integer
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl Changes to this property will trigger replacement. Integer
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes Map<String,String>
(Updatable) 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 Changes to this property will trigger replacement. String
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys List<String>
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state String
The current state of the Exadata VM cluster on Exascale Infrastructure.
subnetId Changes to this property will trigger replacement. String
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
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
(Updatable) Operating system version of the image.
timeCreated String
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
timeZone Changes to this property will trigger replacement. String

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

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 Changes to this property will trigger replacement. string
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupNetworkNsgIds string[]
(Updatable) 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 Changes to this property will trigger replacement. string
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
clusterName Changes to this property will trigger replacement. 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 string
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId string
(Updatable) The OCID of the compartment.
dataCollectionOptions ExadbVmClusterDataCollectionOptions
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
domain Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The OCID of the Exadata Database Storage Vault.
freeformTags {[key: string]: string}
(Updatable) 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

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

gridImageType string
The type of Grid Image
hostname Changes to this property will trigger replacement. 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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

iormConfigCaches ExadbVmClusterIormConfigCach[]
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
(Updatable) 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.
nodeConfig ExadbVmClusterNodeConfig
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
nodeResources ExadbVmClusterNodeResource[]
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds string[]
(Updatable) 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. number
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl Changes to this property will trigger replacement. number
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes {[key: string]: string}
(Updatable) 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 Changes to this property will trigger replacement. string
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys string[]
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state string
The current state of the Exadata VM cluster on Exascale Infrastructure.
subnetId Changes to this property will trigger replacement. string
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscriptionId Changes to this property will trigger replacement. string
The OCID of the subscription with which resource needs to be associated with.
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
(Updatable) Operating system version of the image.
timeCreated string
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
timeZone Changes to this property will trigger replacement. string

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

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 Changes to this property will trigger replacement. str
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backup_network_nsg_ids Sequence[str]
(Updatable) 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 Changes to this property will trigger replacement. str
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
cluster_name Changes to this property will trigger replacement. 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 str
The OCID of the cluster placement group of the Exadata Infrastructure.
compartment_id str
(Updatable) The OCID of the compartment.
data_collection_options database.ExadbVmClusterDataCollectionOptionsArgs
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name str
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
domain Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. str
The OCID of the Exadata Database Storage Vault.
freeform_tags Mapping[str, str]
(Updatable) 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

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

grid_image_type str
The type of Grid Image
hostname Changes to this property will trigger replacement. 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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

iorm_config_caches Sequence[database.ExadbVmClusterIormConfigCachArgs]
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
(Updatable) 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_config database.ExadbVmClusterNodeConfigArgs
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
node_resources Sequence[database.ExadbVmClusterNodeResourceArgs]
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsg_ids Sequence[str]
(Updatable) 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. int
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scan_listener_port_tcp_ssl Changes to this property will trigger replacement. int
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
security_attributes Mapping[str, str]
(Updatable) 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 Changes to this property will trigger replacement. str
The shape of the Exadata VM cluster on Exascale Infrastructure resource
ssh_public_keys Sequence[str]
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state str
The current state of the Exadata VM cluster on Exascale Infrastructure.
subnet_id Changes to this property will trigger replacement. str
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscription_id Changes to this property will trigger replacement. str
The OCID of the subscription with which resource needs to be associated with.
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
(Updatable) 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 Changes to this property will trigger replacement. str

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

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 Changes to this property will trigger replacement. String
The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
backupNetworkNsgIds List<String>
(Updatable) 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 Changes to this property will trigger replacement. String
The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
clusterName Changes to this property will trigger replacement. 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 String
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId String
(Updatable) The OCID of the compartment.
dataCollectionOptions Property Map
(Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
domain Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
The OCID of the Exadata Database Storage Vault.
freeformTags Map<String>
(Updatable) 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

(Updatable) Grid Setup will be done using this grid image id.

The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=&shapeFamily=EXADB_XS&availabilityDomain=. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=&shape=ExaDbXS&availabilityDomain=

gridImageType String
The type of Grid Image
hostname Changes to this property will trigger replacement. 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.

The maximum length of the combined hostname and domain is 63 characters.

Note: The hostname must be unique within the subnet. If it is not unique, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.

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
(Updatable) 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.
nodeConfig Property Map
(Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
nodeResources List<Property Map>
Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
nsgIds List<String>
(Updatable) 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. Number
The TCP Single Client Access Name (SCAN) port. The default port is 1521.
scanListenerPortTcpSsl Changes to this property will trigger replacement. Number
The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
securityAttributes Map<String>
(Updatable) 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 Changes to this property will trigger replacement. String
The shape of the Exadata VM cluster on Exascale Infrastructure resource
sshPublicKeys List<String>
(Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
state String
The current state of the Exadata VM cluster on Exascale Infrastructure.
subnetId Changes to this property will trigger replacement. String
The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
subscriptionId Changes to this property will trigger replacement. String
The OCID of the subscription with which resource needs to be associated with.
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
(Updatable) Operating system version of the image.
timeCreated String
The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
timeZone Changes to this property will trigger replacement. String

The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

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.

Supporting Types

ExadbVmClusterDataCollectionOptions
, ExadbVmClusterDataCollectionOptionsArgs

IsDiagnosticsEventsEnabled bool
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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
(Updatable) 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.

ExadbVmClusterIormConfigCach
, ExadbVmClusterIormConfigCachArgs

DbPlans List<ExadbVmClusterIormConfigCachDbPlan>
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
The current state of the Exadata VM cluster on Exascale Infrastructure.
DbPlans []ExadbVmClusterIormConfigCachDbPlan
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
The current state of the Exadata VM cluster on Exascale Infrastructure.
dbPlans List<ExadbVmClusterIormConfigCachDbPlan>
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
The current state of the Exadata VM cluster on Exascale Infrastructure.
dbPlans ExadbVmClusterIormConfigCachDbPlan[]
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
The current state of the Exadata VM cluster on Exascale Infrastructure.
db_plans Sequence[database.ExadbVmClusterIormConfigCachDbPlan]
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
The current state of the Exadata VM cluster on Exascale Infrastructure.
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
The current state of the Exadata VM cluster on Exascale Infrastructure.

ExadbVmClusterIormConfigCachDbPlan
, ExadbVmClusterIormConfigCachDbPlanArgs

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.

ExadbVmClusterNodeConfig
, ExadbVmClusterNodeConfigArgs

EnabledEcpuCountPerNode This property is required. int
(Updatable) The number of ECPUs to enable for each node.
TotalEcpuCountPerNode This property is required. int
(Updatable) The number of Total ECPUs for each node.
VmFileSystemStorageSizeGbsPerNode This property is required. int
(Updatable) The file system storage in GBs for each node.
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.
TotalFileSystemStorageSizeGbsPerNode int
Total file system storage in GBs for each node.
EnabledEcpuCountPerNode This property is required. int
(Updatable) The number of ECPUs to enable for each node.
TotalEcpuCountPerNode This property is required. int
(Updatable) The number of Total ECPUs for each node.
VmFileSystemStorageSizeGbsPerNode This property is required. int
(Updatable) The file system storage in GBs for each node.
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.
TotalFileSystemStorageSizeGbsPerNode int
Total file system storage in GBs for each node.
enabledEcpuCountPerNode This property is required. Integer
(Updatable) The number of ECPUs to enable for each node.
totalEcpuCountPerNode This property is required. Integer
(Updatable) The number of Total ECPUs for each node.
vmFileSystemStorageSizeGbsPerNode This property is required. Integer
(Updatable) The file system storage in GBs for each node.
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.
totalFileSystemStorageSizeGbsPerNode Integer
Total file system storage in GBs for each node.
enabledEcpuCountPerNode This property is required. number
(Updatable) The number of ECPUs to enable for each node.
totalEcpuCountPerNode This property is required. number
(Updatable) The number of Total ECPUs for each node.
vmFileSystemStorageSizeGbsPerNode This property is required. number
(Updatable) The file system storage in GBs for each node.
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.
totalFileSystemStorageSizeGbsPerNode number
Total file system storage in GBs for each node.
enabled_ecpu_count_per_node This property is required. int
(Updatable) The number of ECPUs to enable for each node.
total_ecpu_count_per_node This property is required. int
(Updatable) The number of Total ECPUs for each node.
vm_file_system_storage_size_gbs_per_node This property is required. int
(Updatable) The file system storage in GBs for each node.
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_file_system_storage_size_gbs_per_node int
Total file system storage in GBs for each node.
enabledEcpuCountPerNode This property is required. Number
(Updatable) The number of ECPUs to enable for each node.
totalEcpuCountPerNode This property is required. Number
(Updatable) The number of Total ECPUs for each node.
vmFileSystemStorageSizeGbsPerNode This property is required. Number
(Updatable) The file system storage in GBs for each node.
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.
totalFileSystemStorageSizeGbsPerNode Number
Total file system storage in GBs for each node.

ExadbVmClusterNodeResource
, ExadbVmClusterNodeResourceArgs

NodeName This property is required. string
NodeHostname string
The host name for the node.
NodeId string
The OCID of the node.
State string
The current state of the Exadata VM cluster on Exascale Infrastructure.
NodeName This property is required. string
NodeHostname string
The host name for the node.
NodeId string
The OCID of the node.
State string
The current state of the Exadata VM cluster on Exascale Infrastructure.
nodeName This property is required. String
nodeHostname String
The host name for the node.
nodeId String
The OCID of the node.
state String
The current state of the Exadata VM cluster on Exascale Infrastructure.
nodeName This property is required. string
nodeHostname string
The host name for the node.
nodeId string
The OCID of the node.
state string
The current state of the Exadata VM cluster on Exascale Infrastructure.
node_name This property is required. str
node_hostname str
The host name for the node.
node_id str
The OCID of the node.
state str
The current state of the Exadata VM cluster on Exascale Infrastructure.
nodeName This property is required. String
nodeHostname String
The host name for the node.
nodeId String
The OCID of the node.
state String
The current state of the Exadata VM cluster on Exascale Infrastructure.

Import

ExadbVmClusters can be imported using the id, e.g.

$ pulumi import oci:Database/exadbVmCluster:ExadbVmCluster test_exadb_vm_cluster "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.