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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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}
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[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[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[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 string
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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 string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- BackupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DisplayName string
- (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- GridImage stringId 
- (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 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 ExadbVm Cluster Node Config 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- SshPublic List<string>Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- SubnetId string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- BackupNetwork List<string>Nsg Ids 
- (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 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.
- DataCollection ExadbOptions Vm Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 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.
- 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<ExadbVm Cluster Node Resource> 
- Each node_resourcerepresents 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.
 
- PrivateZone stringId 
- The private zone ID in which you want DNS records to be created.
- ScanListener intPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- ScanListener intPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- SecurityAttributes Dictionary<string, string>
- (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 string
- The OCID of the subscription with which resource needs to be associated with.
- SystemVersion string
- (Updatable) Operating system version of the image.
- TimeZone 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 string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- BackupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DisplayName string
- (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- GridImage stringId 
- (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 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 ExadbVm Cluster Node Config Args 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- SshPublic []stringKeys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- SubnetId string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- BackupNetwork []stringNsg Ids 
- (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 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.
- DataCollection ExadbOptions Vm Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 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.
- 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 []ExadbVm Cluster Node Resource Args 
- Each node_resourcerepresents 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.
 
- PrivateZone stringId 
- The private zone ID in which you want DNS records to be created.
- ScanListener intPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- ScanListener intPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- SecurityAttributes map[string]string
- (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 string
- The OCID of the subscription with which resource needs to be associated with.
- SystemVersion string
- (Updatable) Operating system version of the image.
- TimeZone 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 String
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupSubnet StringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartmentId String
- (Updatable) The OCID of the compartment.
- displayName String
- (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- gridImage StringId 
- (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 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 ExadbVm Cluster Node Config 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic List<String>Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- subnetId String
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backupNetwork List<String>Nsg Ids 
- (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 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.
- dataCollection ExadbOptions Vm Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 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.
- 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<ExadbVm Cluster Node Resource> 
- Each node_resourcerepresents 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.
 
- privateZone StringId 
- The private zone ID in which you want DNS records to be created.
- scanListener IntegerPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener IntegerPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes Map<String,String>
- (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 String
- The OCID of the subscription with which resource needs to be associated with.
- systemVersion String
- (Updatable) Operating system version of the image.
- timeZone 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 string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartmentId string
- (Updatable) The OCID of the compartment.
- displayName string
- (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- gridImage stringId 
- (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 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 ExadbVm Cluster Node Config 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic string[]Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- subnetId string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backupNetwork string[]Nsg Ids 
- (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 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.
- dataCollection ExadbOptions Vm Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- {[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 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.
- {[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 ExadbVm Cluster Node Resource[] 
- Each node_resourcerepresents 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.
 
- privateZone stringId 
- The private zone ID in which you want DNS records to be created.
- scanListener numberPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener numberPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes {[key: string]: string}
- (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 string
- The OCID of the subscription with which resource needs to be associated with.
- systemVersion string
- (Updatable) Operating system version of the image.
- timeZone 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 str
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup_subnet_ strid 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartment_id str
- (Updatable) The OCID of the compartment.
- display_name str
- (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascale_db_ strstorage_ vault_ id 
- The OCID of the Exadata Database Storage Vault.
- grid_image_ strid 
- (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 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 ExadbVm Cluster Node Config Args 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape str
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh_public_ Sequence[str]keys 
- (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 str
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backup_network_ Sequence[str]nsg_ ids 
- (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 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_ Exadboptions Vm Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 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.
- 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[ExadbVm Cluster Node Resource Args] 
- Each node_resourcerepresents 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_ strid 
- The private zone ID in which you want DNS records to be created.
- scan_listener_ intport_ tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan_listener_ intport_ tcp_ ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- security_attributes Mapping[str, str]
- (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 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 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 String
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupSubnet StringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartmentId String
- (Updatable) The OCID of the compartment.
- displayName String
- (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- gridImage StringId 
- (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 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 Property Map
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic List<String>Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- subnetId String
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backupNetwork List<String>Nsg Ids 
- (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 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.
- dataCollection Property MapOptions 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- 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_resourcerepresents 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.
 
- privateZone StringId 
- The private zone ID in which you want DNS records to be created.
- scanListener NumberPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener NumberPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes Map<String>
- (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 String
- The OCID of the subscription with which resource needs to be associated with.
- systemVersion String
- (Updatable) Operating system version of the image.
- timeZone 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:
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- GiVersion string
- A valid Oracle Grid Infrastructure (GI) software version.
- GridImage stringType 
- The type of Grid Image
- Id string
- The provider-assigned unique ID for this managed resource.
- IormConfig List<ExadbCaches Vm Cluster Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- LastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- 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.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanIp List<string>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- 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.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- GiVersion string
- A valid Oracle Grid Infrastructure (GI) software version.
- GridImage stringType 
- The type of Grid Image
- Id string
- The provider-assigned unique ID for this managed resource.
- IormConfig []ExadbCaches Vm Cluster Iorm Config Cach 
- The IORM settings of the Exadata DB system.
- LastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- 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.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanIp []stringIds 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- 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.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- giVersion String
- A valid Oracle Grid Infrastructure (GI) software version.
- gridImage StringType 
- The type of Grid Image
- id String
- The provider-assigned unique ID for this managed resource.
- iormConfig List<ExadbCaches Vm Cluster Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- lastUpdate StringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- 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.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- 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.
- clusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- giVersion string
- A valid Oracle Grid Infrastructure (GI) software version.
- gridImage stringType 
- The type of Grid Image
- id string
- The provider-assigned unique ID for this managed resource.
- iormConfig ExadbCaches Vm Cluster Iorm Config Cach[] 
- The IORM settings of the Exadata DB system.
- lastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- 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.
- scanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp string[]Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- state string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- {[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_ strgroup_ id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- gi_version str
- A valid Oracle Grid Infrastructure (GI) software version.
- grid_image_ strtype 
- The type of Grid Image
- id str
- The provider-assigned unique ID for this managed resource.
- iorm_config_ Sequence[Exadbcaches Vm Cluster Iorm Config Cach] 
- The IORM settings of the Exadata DB system.
- last_update_ strhistory_ entry_ id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- 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_ strname 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_dns_ strrecord_ id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_ip_ Sequence[str]ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- state str
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- 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.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- giVersion String
- A valid Oracle Grid Infrastructure (GI) software version.
- gridImage StringType 
- The type of Grid Image
- id String
- The provider-assigned unique ID for this managed resource.
- iormConfig List<Property Map>Caches 
- The IORM settings of the Exadata DB system.
- lastUpdate StringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- 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.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- 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[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[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[ExadbVmClusterNodeConfigArgs] = None,
        node_resources: Optional[Sequence[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) -> ExadbVmClusterfunc 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- AvailabilityDomain string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- BackupNetwork List<string>Nsg Ids 
- (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.
- BackupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- ClusterName string
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DataCollection ExadbOptions Vm Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- 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.
- GridImage stringId 
- (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= 
- GridImage stringType 
- The type of Grid Image
- Hostname string
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters. - 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. 
- IormConfig List<ExadbCaches Vm Cluster Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- LastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- LicenseModel string
- (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 ExadbVm Cluster Node Config 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- NodeResources List<ExadbVm Cluster Node Resource> 
- Each node_resourcerepresents 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.
 
- PrivateZone stringId 
- The private zone ID in which you want DNS records to be created.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanIp List<string>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- ScanListener intPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- ScanListener intPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- SecurityAttributes Dictionary<string, string>
- (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 string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- SshPublic List<string>Keys 
- (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 string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- SubscriptionId string
- The OCID of the subscription with which resource needs to be associated with.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- SystemVersion string
- (Updatable) Operating system version of the image.
- TimeCreated string
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- TimeZone string
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones. - ** 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 string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- BackupNetwork []stringNsg Ids 
- (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.
- BackupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- ClusterName string
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DataCollection ExadbOptions Vm Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- 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.
- GridImage stringId 
- (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= 
- GridImage stringType 
- The type of Grid Image
- Hostname string
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters. - 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. 
- IormConfig []ExadbCaches Vm Cluster Iorm Config Cach Args 
- The IORM settings of the Exadata DB system.
- LastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- LicenseModel string
- (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 ExadbVm Cluster Node Config Args 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- NodeResources []ExadbVm Cluster Node Resource Args 
- Each node_resourcerepresents 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.
 
- PrivateZone stringId 
- The private zone ID in which you want DNS records to be created.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- ScanIp []stringIds 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- ScanListener intPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- ScanListener intPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- SecurityAttributes map[string]string
- (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 string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- SshPublic []stringKeys 
- (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 string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- SubscriptionId string
- The OCID of the subscription with which resource needs to be associated with.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- SystemVersion string
- (Updatable) Operating system version of the image.
- TimeCreated string
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- TimeZone string
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones. - ** 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 String
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupNetwork List<String>Nsg Ids 
- (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.
- backupSubnet StringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- clusterName String
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartmentId String
- (Updatable) The OCID of the compartment.
- dataCollection ExadbOptions Vm Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- 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.
- gridImage StringId 
- (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= 
- gridImage StringType 
- The type of Grid Image
- hostname String
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters. - 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. 
- iormConfig List<ExadbCaches Vm Cluster Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- lastUpdate StringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- licenseModel String
- (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 ExadbVm Cluster Node Config 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- nodeResources List<ExadbVm Cluster Node Resource> 
- Each node_resourcerepresents 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.
 
- privateZone StringId 
- The private zone ID in which you want DNS records to be created.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanListener IntegerPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener IntegerPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes Map<String,String>
- (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 String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic List<String>Keys 
- (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 String
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscriptionId String
- The OCID of the subscription with which resource needs to be associated with.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- systemVersion String
- (Updatable) Operating system version of the image.
- timeCreated String
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- timeZone String
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones. - ** 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 string
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupNetwork string[]Nsg Ids 
- (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.
- backupSubnet stringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- clusterName string
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- clusterPlacement stringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartmentId string
- (Updatable) The OCID of the compartment.
- dataCollection ExadbOptions Vm Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- {[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 string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- {[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.
- gridImage stringId 
- (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= 
- gridImage stringType 
- The type of Grid Image
- hostname string
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters. - 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. 
- iormConfig ExadbCaches Vm Cluster Iorm Config Cach[] 
- The IORM settings of the Exadata DB system.
- lastUpdate stringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- licenseModel string
- (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 ExadbVm Cluster Node Config 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- nodeResources ExadbVm Cluster Node Resource[] 
- Each node_resourcerepresents 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.
 
- privateZone stringId 
- The private zone ID in which you want DNS records to be created.
- scanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp string[]Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanListener numberPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener numberPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes {[key: string]: string}
- (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 string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic string[]Keys 
- (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 string
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscriptionId string
- The OCID of the subscription with which resource needs to be associated with.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- systemVersion string
- (Updatable) Operating system version of the image.
- timeCreated string
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- timeZone string
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones. - ** 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 str
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup_network_ Sequence[str]nsg_ ids 
- (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_ strid 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- cluster_name str
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- cluster_placement_ strgroup_ id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartment_id str
- (Updatable) The OCID of the compartment.
- data_collection_ Exadboptions Vm Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 str
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascale_db_ strstorage_ vault_ id 
- The OCID of the Exadata Database Storage Vault.
- 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_ strid 
- (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_ strtype 
- The type of Grid Image
- hostname str
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters. - 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_ Sequence[Exadbcaches Vm Cluster Iorm Config Cach Args] 
- The IORM settings of the Exadata DB system.
- last_update_ strhistory_ entry_ id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license_model str
- (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 ExadbVm Cluster Node Config Args 
- (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- node_resources Sequence[ExadbVm Cluster Node Resource Args] 
- Each node_resourcerepresents 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_ strid 
- The private zone ID in which you want DNS records to be created.
- scan_dns_ strname 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_dns_ strrecord_ id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_ip_ Sequence[str]ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scan_listener_ intport_ tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan_listener_ intport_ tcp_ ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- security_attributes Mapping[str, str]
- (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 str
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh_public_ Sequence[str]keys 
- (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 str
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscription_id str
- The OCID of the subscription with which resource needs to be associated with.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system_version str
- (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 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 String
- The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backupNetwork List<String>Nsg Ids 
- (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.
- backupSubnet StringId 
- The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- clusterName String
- The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group of the Exadata Infrastructure.
- compartmentId String
- (Updatable) The OCID of the compartment.
- dataCollection Property MapOptions 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- 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 String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- 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.
- gridImage StringId 
- (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= 
- gridImage StringType 
- The type of Grid Image
- hostname String
- The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters. - 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. 
- iormConfig List<Property Map>Caches 
- The IORM settings of the Exadata DB system.
- lastUpdate StringHistory Entry Id 
- The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- licenseModel String
- (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_resourcerepresents 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.
 
- privateZone StringId 
- The private zone ID in which you want DNS records to be created.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanListener NumberPort Tcp 
- The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scanListener NumberPort Tcp Ssl 
- The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- securityAttributes Map<String>
- (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 String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- sshPublic List<String>Keys 
- (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 String
- The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- subscriptionId String
- The OCID of the subscription with which resource needs to be associated with.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- systemVersion String
- (Updatable) Operating system version of the image.
- timeCreated String
- The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- timeZone String
- The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones. - ** 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            
- IsDiagnostics boolEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- IsDiagnostics boolEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics booleanEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth booleanMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident booleanLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- is_diagnostics_ boolevents_ enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- is_health_ boolmonitoring_ enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- is_incident_ boollogs_ enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
ExadbVmClusterIormConfigCach, ExadbVmClusterIormConfigCachArgs            
- DbPlans List<ExadbVm Cluster Iorm Config Cach Db Plan> 
- An array of IORM settings for all the database in the Exadata DB system.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is AUTO.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- DbPlans []ExadbVm Cluster Iorm Config Cach Db Plan 
- An array of IORM settings for all the database in the Exadata DB system.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is AUTO.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- dbPlans List<ExadbVm Cluster Iorm Config Cach Db Plan> 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is AUTO.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- dbPlans ExadbVm Cluster Iorm Config Cach Db Plan[] 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- objective string
- The current value for the IORM objective. The default is AUTO.
- state string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- db_plans Sequence[ExadbVm Cluster Iorm Config Cach Db Plan] 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycle_details str
- Additional information about the current lifecycle state.
- objective str
- The current value for the IORM objective. The default is AUTO.
- state str
- 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, thedbNameisdefault.
- FlashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- DbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- FlashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- dbName String
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache StringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Integer
- The relative priority of this database.
- dbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- number
- The relative priority of this database.
- db_name str
- The database name. For the default DbPlan, thedbNameisdefault.
- flash_cache_ strlimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- dbName String
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache StringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Number
- The relative priority of this database.
ExadbVmClusterNodeConfig, ExadbVmClusterNodeConfigArgs          
- EnabledEcpu intCount Per Node 
- (Updatable) The number of ECPUs to enable for each node.
- TotalEcpu intCount Per Node 
- (Updatable) The number of Total ECPUs for each node.
- VmFile intSystem Storage Size Gbs Per Node 
- (Updatable) The file system storage in GBs for each node.
- MemorySize intIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- SnapshotFile intSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- TotalFile intSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- EnabledEcpu intCount Per Node 
- (Updatable) The number of ECPUs to enable for each node.
- TotalEcpu intCount Per Node 
- (Updatable) The number of Total ECPUs for each node.
- VmFile intSystem Storage Size Gbs Per Node 
- (Updatable) The file system storage in GBs for each node.
- MemorySize intIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- SnapshotFile intSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- TotalFile intSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- enabledEcpu IntegerCount Per Node 
- (Updatable) The number of ECPUs to enable for each node.
- totalEcpu IntegerCount Per Node 
- (Updatable) The number of Total ECPUs for each node.
- vmFile IntegerSystem Storage Size Gbs Per Node 
- (Updatable) The file system storage in GBs for each node.
- memorySize IntegerIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshotFile IntegerSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- totalFile IntegerSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- enabledEcpu numberCount Per Node 
- (Updatable) The number of ECPUs to enable for each node.
- totalEcpu numberCount Per Node 
- (Updatable) The number of Total ECPUs for each node.
- vmFile numberSystem Storage Size Gbs Per Node 
- (Updatable) The file system storage in GBs for each node.
- memorySize numberIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshotFile numberSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- totalFile numberSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
- enabled_ecpu_ intcount_ per_ node 
- (Updatable) The number of ECPUs to enable for each node.
- total_ecpu_ intcount_ per_ node 
- (Updatable) The number of Total ECPUs for each node.
- vm_file_ intsystem_ storage_ size_ gbs_ per_ node 
- (Updatable) The file system storage in GBs for each node.
- memory_size_ intin_ gbs_ per_ node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshot_file_ intsystem_ storage_ size_ gbs_ per_ node 
- The file system storage in GBs for snapshot for each node.
- total_file_ intsystem_ storage_ size_ gbs_ per_ node 
- Total file system storage in GBs for each node.
- enabledEcpu NumberCount Per Node 
- (Updatable) The number of ECPUs to enable for each node.
- totalEcpu NumberCount Per Node 
- (Updatable) The number of Total ECPUs for each node.
- vmFile NumberSystem Storage Size Gbs Per Node 
- (Updatable) The file system storage in GBs for each node.
- memorySize NumberIn Gbs Per Node 
- The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshotFile NumberSystem Storage Size Gbs Per Node 
- The file system storage in GBs for snapshot for each node.
- totalFile NumberSystem Storage Size Gbs Per Node 
- Total file system storage in GBs for each node.
ExadbVmClusterNodeResource, ExadbVmClusterNodeResourceArgs          
- NodeName 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 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 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 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 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 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"
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 ociTerraform Provider.