1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. ExadbVmCluster
Oracle Cloud Infrastructure v2.13.0 published on Tuesday, Oct 22, 2024 by Pulumi

oci.Database.ExadbVmCluster

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.13.0 published on Tuesday, Oct 22, 2024 by Pulumi

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

    Creates an Exadata VM cluster on Exascale Infrastructure

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    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()
                    .enabledEcpuPerNode(exadbVmClusterEnabledEcpuPerNode)
                    .totalEcpuPerNode(exadbVmClusterTotalEcpuPerNode)
                    .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)
                .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:
            enabledEcpuPerNode: ${exadbVmClusterEnabledEcpuPerNode}
            totalEcpuPerNode: ${exadbVmClusterTotalEcpuPerNode}
            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}
          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[_database.ExadbVmClusterNodeConfigArgs] = None,
                       exascale_db_storage_vault_id: Optional[str] = None,
                       hostname: Optional[str] = None,
                       defined_tags: Optional[Mapping[str, str]] = None,
                       scan_listener_port_tcp: Optional[int] = None,
                       license_model: Optional[str] = None,
                       domain: Optional[str] = None,
                       node_resources: Optional[Sequence[_database.ExadbVmClusterNodeResourceArgs]] = None,
                       nsg_ids: Optional[Sequence[str]] = None,
                       private_zone_id: Optional[str] = None,
                       freeform_tags: Optional[Mapping[str, str]] = None,
                       scan_listener_port_tcp_ssl: Optional[int] = None,
                       data_collection_options: Optional[_database.ExadbVmClusterDataCollectionOptionsArgs] = None,
                       cluster_name: Optional[str] = None,
                       backup_network_nsg_ids: Optional[Sequence[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,
        DataCollectionOptions = new Oci.Database.Inputs.ExadbVmClusterDataCollectionOptionsArgs
        {
            IsDiagnosticsEventsEnabled = false,
            IsHealthMonitoringEnabled = false,
            IsIncidentLogsEnabled = false,
        },
        ClusterName = "string",
        BackupNetworkNsgIds = new[]
        {
            "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),
    	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"),
    	},
    	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)
        .dataCollectionOptions(ExadbVmClusterDataCollectionOptionsArgs.builder()
            .isDiagnosticsEventsEnabled(false)
            .isHealthMonitoringEnabled(false)
            .isIncidentLogsEnabled(false)
            .build())
        .clusterName("string")
        .backupNetworkNsgIds("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=oci.database.ExadbVmClusterNodeConfigArgs(
            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=[oci.database.ExadbVmClusterNodeResourceArgs(
            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,
        data_collection_options=oci.database.ExadbVmClusterDataCollectionOptionsArgs(
            is_diagnostics_events_enabled=False,
            is_health_monitoring_enabled=False,
            is_incident_logs_enabled=False,
        ),
        cluster_name="string",
        backup_network_nsg_ids=["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,
        dataCollectionOptions: {
            isDiagnosticsEventsEnabled: false,
            isHealthMonitoringEnabled: false,
            isIncidentLogsEnabled: false,
        },
        clusterName: "string",
        backupNetworkNsgIds: ["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
        shape: string
        sshPublicKeys:
            - string
        subnetId: 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

    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.
    BackupSubnetId string
    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.
    ExascaleDbStorageVaultId string
    The OCID of the Exadata Database Storage Vault.
    GridImageId string
    (Updatable) Grid Setup will be done using this grid image id
    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 ExadbVmClusterNodeConfig
    (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
    SshPublicKeys List<string>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
    SubnetId string
    The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    BackupNetworkNsgIds List<string>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    ClusterName string
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    DataCollectionOptions ExadbVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Domain string
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    LicenseModel string
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    NodeResources List<ExadbVmClusterNodeResource>
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    NsgIds List<string>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    PrivateZoneId string
    The private zone ID in which you want DNS records to be created.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    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.
    BackupSubnetId string
    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.
    ExascaleDbStorageVaultId string
    The OCID of the Exadata Database Storage Vault.
    GridImageId string
    (Updatable) Grid Setup will be done using this grid image id
    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 ExadbVmClusterNodeConfigArgs
    (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
    SshPublicKeys []string
    (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
    SubnetId string
    The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    BackupNetworkNsgIds []string
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    ClusterName string
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    DataCollectionOptions ExadbVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Domain string
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    LicenseModel string
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    NodeResources []ExadbVmClusterNodeResourceArgs
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    NsgIds []string
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    PrivateZoneId string
    The private zone ID in which you want DNS records to be created.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    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.
    backupSubnetId String
    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.
    exascaleDbStorageVaultId String
    The OCID of the Exadata Database Storage Vault.
    gridImageId String
    (Updatable) Grid Setup will be done using this grid image id
    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 ExadbVmClusterNodeConfig
    (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
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
    subnetId String
    The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    clusterName String
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    dataCollectionOptions ExadbVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain String
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    licenseModel String
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    nodeResources List<ExadbVmClusterNodeResource>
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    privateZoneId String
    The private zone ID in which you want DNS records to be created.
    scanListenerPortTcp Integer
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Integer
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    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.
    backupSubnetId string
    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.
    exascaleDbStorageVaultId string
    The OCID of the Exadata Database Storage Vault.
    gridImageId string
    (Updatable) Grid Setup will be done using this grid image id
    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 ExadbVmClusterNodeConfig
    (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
    sshPublicKeys string[]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
    subnetId string
    The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    backupNetworkNsgIds string[]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    clusterName string
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    dataCollectionOptions ExadbVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain string
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    licenseModel string
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    nodeResources ExadbVmClusterNodeResource[]
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsgIds string[]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    privateZoneId string
    The private zone ID in which you want DNS records to be created.
    scanListenerPortTcp number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl number
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    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_id str
    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_storage_vault_id str
    The OCID of the Exadata Database Storage Vault.
    grid_image_id str
    (Updatable) Grid Setup will be done using this grid image id
    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 database.ExadbVmClusterNodeConfigArgs
    (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_keys Sequence[str]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
    subnet_id str
    The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    backup_network_nsg_ids Sequence[str]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    cluster_name str
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    data_collection_options database.ExadbVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain str
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    license_model str
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    node_resources Sequence[database.ExadbVmClusterNodeResourceArgs]
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsg_ids Sequence[str]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    private_zone_id str
    The private zone ID in which you want DNS records to be created.
    scan_listener_port_tcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scan_listener_port_tcp_ssl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    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.
    backupSubnetId String
    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.
    exascaleDbStorageVaultId String
    The OCID of the Exadata Database Storage Vault.
    gridImageId String
    (Updatable) Grid Setup will be done using this grid image id
    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
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
    subnetId String
    The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    clusterName String
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    dataCollectionOptions Property Map
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain String
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    licenseModel String
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    nodeResources List<Property Map>
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    privateZoneId String
    The private zone ID in which you want DNS records to be created.
    scanListenerPortTcp Number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Number
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    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:

    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    GridImageType string
    The type of Grid Image
    Id string
    The provider-assigned unique ID for this managed resource.
    IormConfigCaches List<ExadbVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanIpIds List<string>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    State string
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    VipIds List<string>
    The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
    ZoneId string
    The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    GridImageType string
    The type of Grid Image
    Id string
    The provider-assigned unique ID for this managed resource.
    IormConfigCaches []ExadbVmClusterIormConfigCach
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanIpIds []string
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    State string
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    VipIds []string
    The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
    ZoneId string
    The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageType String
    The type of Grid Image
    id String
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches List<ExadbVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    state String
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    vipIds List<String>
    The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
    zoneId String
    The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
    giVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageType string
    The type of Grid Image
    id string
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches ExadbVmClusterIormConfigCach[]
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    listenerPort string
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    scanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds string[]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    state string
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    vipIds string[]
    The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
    zoneId string
    The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
    gi_version str
    A valid Oracle Grid Infrastructure (GI) software version.
    grid_image_type str
    The type of Grid Image
    id str
    The provider-assigned unique ID for this managed resource.
    iorm_config_caches Sequence[database.ExadbVmClusterIormConfigCach]
    The IORM settings of the Exadata DB system.
    last_update_history_entry_id str
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycle_details str
    Additional information about the current lifecycle state.
    listener_port str
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    scan_dns_name str
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scan_dns_record_id str
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scan_ip_ids Sequence[str]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    state str
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    time_created str
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    vip_ids Sequence[str]
    The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
    zone_id str
    The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageType String
    The type of Grid Image
    id String
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches List<Property Map>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    state String
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    vipIds List<String>
    The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
    zoneId String
    The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.

    Look up Existing ExadbVmCluster Resource

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

    public static get(name: string, id: Input<ID>, state?: ExadbVmClusterState, opts?: CustomResourceOptions): ExadbVmCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_domain: Optional[str] = None,
            backup_network_nsg_ids: Optional[Sequence[str]] = None,
            backup_subnet_id: Optional[str] = None,
            cluster_name: Optional[str] = None,
            compartment_id: Optional[str] = None,
            data_collection_options: Optional[_database.ExadbVmClusterDataCollectionOptionsArgs] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            domain: Optional[str] = None,
            exascale_db_storage_vault_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            gi_version: Optional[str] = None,
            grid_image_id: Optional[str] = None,
            grid_image_type: Optional[str] = None,
            hostname: Optional[str] = None,
            iorm_config_caches: Optional[Sequence[_database.ExadbVmClusterIormConfigCachArgs]] = None,
            last_update_history_entry_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            listener_port: Optional[str] = None,
            node_config: Optional[_database.ExadbVmClusterNodeConfigArgs] = None,
            node_resources: Optional[Sequence[_database.ExadbVmClusterNodeResourceArgs]] = None,
            nsg_ids: Optional[Sequence[str]] = None,
            private_zone_id: Optional[str] = None,
            scan_dns_name: Optional[str] = None,
            scan_dns_record_id: Optional[str] = None,
            scan_ip_ids: Optional[Sequence[str]] = None,
            scan_listener_port_tcp: Optional[int] = None,
            scan_listener_port_tcp_ssl: Optional[int] = None,
            shape: Optional[str] = None,
            ssh_public_keys: Optional[Sequence[str]] = None,
            state: Optional[str] = None,
            subnet_id: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            system_version: Optional[str] = None,
            time_created: Optional[str] = None,
            time_zone: Optional[str] = None,
            vip_ids: Optional[Sequence[str]] = None,
            zone_id: Optional[str] = None) -> ExadbVmCluster
    func GetExadbVmCluster(ctx *Context, name string, id IDInput, state *ExadbVmClusterState, opts ...ResourceOption) (*ExadbVmCluster, error)
    public static ExadbVmCluster Get(string name, Input<string> id, ExadbVmClusterState? state, CustomResourceOptions? opts = null)
    public static ExadbVmCluster get(String name, Output<String> id, ExadbVmClusterState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    AvailabilityDomain string
    The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
    BackupNetworkNsgIds List<string>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    BackupSubnetId string
    The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    ClusterName string
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DataCollectionOptions ExadbVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
    Domain string
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    ExascaleDbStorageVaultId string
    The OCID of the Exadata Database Storage Vault.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    GridImageId string
    (Updatable) Grid Setup will be done using this grid image id
    GridImageType string
    The type of Grid Image
    Hostname string

    The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.

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

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

    IormConfigCaches List<ExadbVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    NodeConfig ExadbVmClusterNodeConfig
    (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    NodeResources List<ExadbVmClusterNodeResource>
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    NsgIds List<string>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    PrivateZoneId string
    The private zone ID in which you want DNS records to be created.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanIpIds List<string>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    Shape string
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    SshPublicKeys List<string>
    (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.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    SystemVersion string
    (Updatable) Operating system version of the image.
    TimeCreated string
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    TimeZone 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.
    BackupNetworkNsgIds []string
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    BackupSubnetId string
    The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    ClusterName string
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DataCollectionOptions ExadbVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
    Domain string
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    ExascaleDbStorageVaultId string
    The OCID of the Exadata Database Storage Vault.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    GridImageId string
    (Updatable) Grid Setup will be done using this grid image id
    GridImageType string
    The type of Grid Image
    Hostname string

    The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.

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

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

    IormConfigCaches []ExadbVmClusterIormConfigCachArgs
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    NodeConfig ExadbVmClusterNodeConfigArgs
    (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    NodeResources []ExadbVmClusterNodeResourceArgs
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    NsgIds []string
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    PrivateZoneId string
    The private zone ID in which you want DNS records to be created.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    ScanIpIds []string
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    Shape string
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    SshPublicKeys []string
    (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.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    SystemVersion string
    (Updatable) Operating system version of the image.
    TimeCreated string
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    TimeZone 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.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backupSubnetId String
    The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    clusterName String
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartmentId String
    (Updatable) The OCID of the compartment.
    dataCollectionOptions ExadbVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
    domain String
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    exascaleDbStorageVaultId String
    The OCID of the Exadata Database Storage Vault.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageId String
    (Updatable) Grid Setup will be done using this grid image id
    gridImageType String
    The type of Grid Image
    hostname String

    The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.

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

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

    iormConfigCaches List<ExadbVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    licenseModel String
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    nodeConfig ExadbVmClusterNodeConfig
    (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    nodeResources List<ExadbVmClusterNodeResource>
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    privateZoneId String
    The private zone ID in which you want DNS records to be created.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scanListenerPortTcp Integer
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Integer
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape String
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    sshPublicKeys List<String>
    (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.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    systemVersion String
    (Updatable) Operating system version of the image.
    timeCreated String
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    timeZone 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.
    backupNetworkNsgIds string[]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backupSubnetId string
    The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    clusterName string
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartmentId string
    (Updatable) The OCID of the compartment.
    dataCollectionOptions ExadbVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
    domain string
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    exascaleDbStorageVaultId string
    The OCID of the Exadata Database Storage Vault.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageId string
    (Updatable) Grid Setup will be done using this grid image id
    gridImageType string
    The type of Grid Image
    hostname string

    The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.

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

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

    iormConfigCaches ExadbVmClusterIormConfigCach[]
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    licenseModel string
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    listenerPort string
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    nodeConfig ExadbVmClusterNodeConfig
    (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    nodeResources ExadbVmClusterNodeResource[]
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsgIds string[]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    privateZoneId string
    The private zone ID in which you want DNS records to be created.
    scanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds string[]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scanListenerPortTcp number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl number
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape string
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    sshPublicKeys string[]
    (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.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    systemVersion string
    (Updatable) Operating system version of the image.
    timeCreated string
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    timeZone 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_nsg_ids Sequence[str]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backup_subnet_id str
    The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    cluster_name str
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartment_id str
    (Updatable) The OCID of the compartment.
    data_collection_options database.ExadbVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
    domain str
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    exascale_db_storage_vault_id str
    The OCID of the Exadata Database Storage Vault.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    gi_version str
    A valid Oracle Grid Infrastructure (GI) software version.
    grid_image_id str
    (Updatable) Grid Setup will be done using this grid image id
    grid_image_type str
    The type of Grid Image
    hostname str

    The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.

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

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

    iorm_config_caches Sequence[database.ExadbVmClusterIormConfigCachArgs]
    The IORM settings of the Exadata DB system.
    last_update_history_entry_id str
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    license_model str
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    lifecycle_details str
    Additional information about the current lifecycle state.
    listener_port str
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    node_config database.ExadbVmClusterNodeConfigArgs
    (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    node_resources Sequence[database.ExadbVmClusterNodeResourceArgs]
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsg_ids Sequence[str]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    private_zone_id str
    The private zone ID in which you want DNS records to be created.
    scan_dns_name str
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scan_dns_record_id str
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scan_ip_ids Sequence[str]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scan_listener_port_tcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scan_listener_port_tcp_ssl int
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape str
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    ssh_public_keys Sequence[str]
    (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.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    system_version str
    (Updatable) Operating system version of the image.
    time_created str
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    time_zone 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.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backupSubnetId String
    The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
    clusterName String
    The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartmentId String
    (Updatable) The OCID of the compartment.
    dataCollectionOptions Property Map
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
    domain String
    A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Database Service on Exascale Infrastructure only.
    exascaleDbStorageVaultId String
    The OCID of the Exadata Database Storage Vault.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    gridImageId String
    (Updatable) Grid Setup will be done using this grid image id
    gridImageType String
    The type of Grid Image
    hostname String

    The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.

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

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

    iormConfigCaches List<Property Map>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    licenseModel String
    (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
    nodeConfig Property Map
    (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
    nodeResources List<Property Map>
    Each node_resource represents a node in the Exadata VM cluster on Exascale Infrastructure.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    privateZoneId String
    The private zone ID in which you want DNS records to be created.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scanListenerPortTcp Number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Number
    The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
    shape String
    The shape of the Exadata VM cluster on Exascale Infrastructure resource
    sshPublicKeys List<String>
    (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.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    systemVersion String
    (Updatable) Operating system version of the image.
    timeCreated String
    The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
    timeZone String

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

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

    vipIds List<String>
    The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
    zoneId String
    The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.

    Supporting Types

    ExadbVmClusterDataCollectionOptions, ExadbVmClusterDataCollectionOptionsArgs

    IsDiagnosticsEventsEnabled bool
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    IsDiagnosticsEventsEnabled bool
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled boolean
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled boolean
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled boolean
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    is_diagnostics_events_enabled bool
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    is_health_monitoring_enabled bool
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    is_incident_logs_enabled bool
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.

    ExadbVmClusterIormConfigCach, ExadbVmClusterIormConfigCachArgs

    DbPlans List<ExadbVmClusterIormConfigCachDbPlan>
    An array of IORM settings for all the database in the Exadata DB system.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Objective string
    The current value for the IORM objective. The default is AUTO.
    State string
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    DbPlans []ExadbVmClusterIormConfigCachDbPlan
    An array of IORM settings for all the database in the Exadata DB system.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Objective string
    The current value for the IORM objective. The default is AUTO.
    State string
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    dbPlans List<ExadbVmClusterIormConfigCachDbPlan>
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    objective String
    The current value for the IORM objective. The default is AUTO.
    state String
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    dbPlans ExadbVmClusterIormConfigCachDbPlan[]
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    objective string
    The current value for the IORM objective. The default is AUTO.
    state string
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    db_plans Sequence[database.ExadbVmClusterIormConfigCachDbPlan]
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycle_details str
    Additional information about the current lifecycle state.
    objective str
    The current value for the IORM objective. The default is AUTO.
    state str
    The current state of the Exadata VM cluster on Exascale Infrastructure.
    dbPlans List<Property Map>
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    objective String
    The current value for the IORM objective. The default is AUTO.
    state String
    The current state of the Exadata VM cluster on Exascale Infrastructure.

    ExadbVmClusterIormConfigCachDbPlan, ExadbVmClusterIormConfigCachDbPlanArgs

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

    ExadbVmClusterNodeConfig, ExadbVmClusterNodeConfigArgs

    EnabledEcpuCountPerNode int
    (Updatable) The number of ECPUs to enable for each node.
    TotalEcpuCountPerNode int
    (Updatable) The number of Total ECPUs for each node.
    VmFileSystemStorageSizeGbsPerNode int
    (Updatable) The file system storage in GBs for each node.
    MemorySizeInGbsPerNode int
    The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
    SnapshotFileSystemStorageSizeGbsPerNode int
    The file system storage in GBs for snapshot for each node.
    TotalFileSystemStorageSizeGbsPerNode int
    Total file system storage in GBs for each node.
    EnabledEcpuCountPerNode int
    (Updatable) The number of ECPUs to enable for each node.
    TotalEcpuCountPerNode int
    (Updatable) The number of Total ECPUs for each node.
    VmFileSystemStorageSizeGbsPerNode int
    (Updatable) The file system storage in GBs for each node.
    MemorySizeInGbsPerNode int
    The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
    SnapshotFileSystemStorageSizeGbsPerNode int
    The file system storage in GBs for snapshot for each node.
    TotalFileSystemStorageSizeGbsPerNode int
    Total file system storage in GBs for each node.
    enabledEcpuCountPerNode Integer
    (Updatable) The number of ECPUs to enable for each node.
    totalEcpuCountPerNode Integer
    (Updatable) The number of Total ECPUs for each node.
    vmFileSystemStorageSizeGbsPerNode Integer
    (Updatable) The file system storage in GBs for each node.
    memorySizeInGbsPerNode Integer
    The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
    snapshotFileSystemStorageSizeGbsPerNode Integer
    The file system storage in GBs for snapshot for each node.
    totalFileSystemStorageSizeGbsPerNode Integer
    Total file system storage in GBs for each node.
    enabledEcpuCountPerNode number
    (Updatable) The number of ECPUs to enable for each node.
    totalEcpuCountPerNode number
    (Updatable) The number of Total ECPUs for each node.
    vmFileSystemStorageSizeGbsPerNode number
    (Updatable) The file system storage in GBs for each node.
    memorySizeInGbsPerNode number
    The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
    snapshotFileSystemStorageSizeGbsPerNode number
    The file system storage in GBs for snapshot for each node.
    totalFileSystemStorageSizeGbsPerNode number
    Total file system storage in GBs for each node.
    enabled_ecpu_count_per_node int
    (Updatable) The number of ECPUs to enable for each node.
    total_ecpu_count_per_node int
    (Updatable) The number of Total ECPUs for each node.
    vm_file_system_storage_size_gbs_per_node int
    (Updatable) The file system storage in GBs for each node.
    memory_size_in_gbs_per_node int
    The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
    snapshot_file_system_storage_size_gbs_per_node int
    The file system storage in GBs for snapshot for each node.
    total_file_system_storage_size_gbs_per_node int
    Total file system storage in GBs for each node.
    enabledEcpuCountPerNode Number
    (Updatable) The number of ECPUs to enable for each node.
    totalEcpuCountPerNode Number
    (Updatable) The number of Total ECPUs for each node.
    vmFileSystemStorageSizeGbsPerNode Number
    (Updatable) The file system storage in GBs for each node.
    memorySizeInGbsPerNode Number
    The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
    snapshotFileSystemStorageSizeGbsPerNode Number
    The file system storage in GBs for snapshot for each node.
    totalFileSystemStorageSizeGbsPerNode Number
    Total file system storage in GBs for each node.

    ExadbVmClusterNodeResource, ExadbVmClusterNodeResourceArgs

    NodeName 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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.13.0 published on Tuesday, Oct 22, 2024 by Pulumi