1. Packages
  2. AWS
  3. API Docs
  4. odb
  5. CloudVmCluster
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

aws.odb.CloudVmCluster

Deploy with Pulumi
aws logo
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const withMinimumParameter = new aws.odb.CloudVmCluster("with_minimum_parameter", {
        displayName: "my-exa-infra",
        cloudExadataInfrastructureId: "exa_gjrmtxl4qk",
        cpuCoreCount: 6,
        giVersion: "23.0.0.0",
        hostnamePrefix: "apollo12",
        sshPublicKeys: ["public-ssh-key"],
        odbNetworkId: "odbnet_3l9st3litg",
        isLocalBackupEnabled: true,
        isSparseDiskgroupEnabled: true,
        licenseModel: "LICENSE_INCLUDED",
        dataStorageSizeInTbs: 20,
        dbServers: [
            "db-server-1",
            "db-server-2",
        ],
        dbNodeStorageSizeInGbs: 120,
        memorySizeInGbs: 60,
        dataCollectionOptions: {
            isDiagnosticsEventsEnabled: false,
            isHealthMonitoringEnabled: false,
            isIncidentLogsEnabled: false,
        },
    });
    const withAllParameters = new aws.odb.CloudVmCluster("with_all_parameters", {
        displayName: "my-vmc",
        cloudExadataInfrastructureId: "exa_gjrmtxl4qk",
        cpuCoreCount: 6,
        giVersion: "23.0.0.0",
        hostnamePrefix: "apollo12",
        sshPublicKeys: ["my-ssh-key"],
        odbNetworkId: "odbnet_3l9st3litg",
        isLocalBackupEnabled: true,
        isSparseDiskgroupEnabled: true,
        licenseModel: "LICENSE_INCLUDED",
        dataStorageSizeInTbs: 20,
        dbServers: [
            "my-dbserver-1",
            "my-db-server-2",
        ],
        dbNodeStorageSizeInGbs: 120,
        memorySizeInGbs: 60,
        clusterName: "julia-13",
        timezone: "UTC",
        scanListenerPortTcp: 1521,
        tags: {
            env: "dev",
        },
        dataCollectionOptions: {
            isDiagnosticsEventsEnabled: true,
            isHealthMonitoringEnabled: true,
            isIncidentLogsEnabled: true,
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    with_minimum_parameter = aws.odb.CloudVmCluster("with_minimum_parameter",
        display_name="my-exa-infra",
        cloud_exadata_infrastructure_id="exa_gjrmtxl4qk",
        cpu_core_count=6,
        gi_version="23.0.0.0",
        hostname_prefix="apollo12",
        ssh_public_keys=["public-ssh-key"],
        odb_network_id="odbnet_3l9st3litg",
        is_local_backup_enabled=True,
        is_sparse_diskgroup_enabled=True,
        license_model="LICENSE_INCLUDED",
        data_storage_size_in_tbs=20,
        db_servers=[
            "db-server-1",
            "db-server-2",
        ],
        db_node_storage_size_in_gbs=120,
        memory_size_in_gbs=60,
        data_collection_options={
            "is_diagnostics_events_enabled": False,
            "is_health_monitoring_enabled": False,
            "is_incident_logs_enabled": False,
        })
    with_all_parameters = aws.odb.CloudVmCluster("with_all_parameters",
        display_name="my-vmc",
        cloud_exadata_infrastructure_id="exa_gjrmtxl4qk",
        cpu_core_count=6,
        gi_version="23.0.0.0",
        hostname_prefix="apollo12",
        ssh_public_keys=["my-ssh-key"],
        odb_network_id="odbnet_3l9st3litg",
        is_local_backup_enabled=True,
        is_sparse_diskgroup_enabled=True,
        license_model="LICENSE_INCLUDED",
        data_storage_size_in_tbs=20,
        db_servers=[
            "my-dbserver-1",
            "my-db-server-2",
        ],
        db_node_storage_size_in_gbs=120,
        memory_size_in_gbs=60,
        cluster_name="julia-13",
        timezone="UTC",
        scan_listener_port_tcp=1521,
        tags={
            "env": "dev",
        },
        data_collection_options={
            "is_diagnostics_events_enabled": True,
            "is_health_monitoring_enabled": True,
            "is_incident_logs_enabled": True,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := odb.NewCloudVmCluster(ctx, "with_minimum_parameter", &odb.CloudVmClusterArgs{
    			DisplayName:                  pulumi.String("my-exa-infra"),
    			CloudExadataInfrastructureId: pulumi.String("exa_gjrmtxl4qk"),
    			CpuCoreCount:                 pulumi.Int(6),
    			GiVersion:                    pulumi.String("23.0.0.0"),
    			HostnamePrefix:               pulumi.String("apollo12"),
    			SshPublicKeys: pulumi.StringArray{
    				pulumi.String("public-ssh-key"),
    			},
    			OdbNetworkId:             pulumi.String("odbnet_3l9st3litg"),
    			IsLocalBackupEnabled:     pulumi.Bool(true),
    			IsSparseDiskgroupEnabled: pulumi.Bool(true),
    			LicenseModel:             pulumi.String("LICENSE_INCLUDED"),
    			DataStorageSizeInTbs:     pulumi.Float64(20),
    			DbServers: pulumi.StringArray{
    				pulumi.String("db-server-1"),
    				pulumi.String("db-server-2"),
    			},
    			DbNodeStorageSizeInGbs: pulumi.Int(120),
    			MemorySizeInGbs:        pulumi.Int(60),
    			DataCollectionOptions: &odb.CloudVmClusterDataCollectionOptionsArgs{
    				IsDiagnosticsEventsEnabled: pulumi.Bool(false),
    				IsHealthMonitoringEnabled:  pulumi.Bool(false),
    				IsIncidentLogsEnabled:      pulumi.Bool(false),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = odb.NewCloudVmCluster(ctx, "with_all_parameters", &odb.CloudVmClusterArgs{
    			DisplayName:                  pulumi.String("my-vmc"),
    			CloudExadataInfrastructureId: pulumi.String("exa_gjrmtxl4qk"),
    			CpuCoreCount:                 pulumi.Int(6),
    			GiVersion:                    pulumi.String("23.0.0.0"),
    			HostnamePrefix:               pulumi.String("apollo12"),
    			SshPublicKeys: pulumi.StringArray{
    				pulumi.String("my-ssh-key"),
    			},
    			OdbNetworkId:             pulumi.String("odbnet_3l9st3litg"),
    			IsLocalBackupEnabled:     pulumi.Bool(true),
    			IsSparseDiskgroupEnabled: pulumi.Bool(true),
    			LicenseModel:             pulumi.String("LICENSE_INCLUDED"),
    			DataStorageSizeInTbs:     pulumi.Float64(20),
    			DbServers: pulumi.StringArray{
    				pulumi.String("my-dbserver-1"),
    				pulumi.String("my-db-server-2"),
    			},
    			DbNodeStorageSizeInGbs: pulumi.Int(120),
    			MemorySizeInGbs:        pulumi.Int(60),
    			ClusterName:            pulumi.String("julia-13"),
    			Timezone:               pulumi.String("UTC"),
    			ScanListenerPortTcp:    pulumi.Int(1521),
    			Tags: pulumi.StringMap{
    				"env": pulumi.String("dev"),
    			},
    			DataCollectionOptions: &odb.CloudVmClusterDataCollectionOptionsArgs{
    				IsDiagnosticsEventsEnabled: pulumi.Bool(true),
    				IsHealthMonitoringEnabled:  pulumi.Bool(true),
    				IsIncidentLogsEnabled:      pulumi.Bool(true),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var withMinimumParameter = new Aws.Odb.CloudVmCluster("with_minimum_parameter", new()
        {
            DisplayName = "my-exa-infra",
            CloudExadataInfrastructureId = "exa_gjrmtxl4qk",
            CpuCoreCount = 6,
            GiVersion = "23.0.0.0",
            HostnamePrefix = "apollo12",
            SshPublicKeys = new[]
            {
                "public-ssh-key",
            },
            OdbNetworkId = "odbnet_3l9st3litg",
            IsLocalBackupEnabled = true,
            IsSparseDiskgroupEnabled = true,
            LicenseModel = "LICENSE_INCLUDED",
            DataStorageSizeInTbs = 20,
            DbServers = new[]
            {
                "db-server-1",
                "db-server-2",
            },
            DbNodeStorageSizeInGbs = 120,
            MemorySizeInGbs = 60,
            DataCollectionOptions = new Aws.Odb.Inputs.CloudVmClusterDataCollectionOptionsArgs
            {
                IsDiagnosticsEventsEnabled = false,
                IsHealthMonitoringEnabled = false,
                IsIncidentLogsEnabled = false,
            },
        });
    
        var withAllParameters = new Aws.Odb.CloudVmCluster("with_all_parameters", new()
        {
            DisplayName = "my-vmc",
            CloudExadataInfrastructureId = "exa_gjrmtxl4qk",
            CpuCoreCount = 6,
            GiVersion = "23.0.0.0",
            HostnamePrefix = "apollo12",
            SshPublicKeys = new[]
            {
                "my-ssh-key",
            },
            OdbNetworkId = "odbnet_3l9st3litg",
            IsLocalBackupEnabled = true,
            IsSparseDiskgroupEnabled = true,
            LicenseModel = "LICENSE_INCLUDED",
            DataStorageSizeInTbs = 20,
            DbServers = new[]
            {
                "my-dbserver-1",
                "my-db-server-2",
            },
            DbNodeStorageSizeInGbs = 120,
            MemorySizeInGbs = 60,
            ClusterName = "julia-13",
            Timezone = "UTC",
            ScanListenerPortTcp = 1521,
            Tags = 
            {
                { "env", "dev" },
            },
            DataCollectionOptions = new Aws.Odb.Inputs.CloudVmClusterDataCollectionOptionsArgs
            {
                IsDiagnosticsEventsEnabled = true,
                IsHealthMonitoringEnabled = true,
                IsIncidentLogsEnabled = true,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.odb.CloudVmCluster;
    import com.pulumi.aws.odb.CloudVmClusterArgs;
    import com.pulumi.aws.odb.inputs.CloudVmClusterDataCollectionOptionsArgs;
    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 withMinimumParameter = new CloudVmCluster("withMinimumParameter", CloudVmClusterArgs.builder()
                .displayName("my-exa-infra")
                .cloudExadataInfrastructureId("exa_gjrmtxl4qk")
                .cpuCoreCount(6)
                .giVersion("23.0.0.0")
                .hostnamePrefix("apollo12")
                .sshPublicKeys("public-ssh-key")
                .odbNetworkId("odbnet_3l9st3litg")
                .isLocalBackupEnabled(true)
                .isSparseDiskgroupEnabled(true)
                .licenseModel("LICENSE_INCLUDED")
                .dataStorageSizeInTbs(20.0)
                .dbServers(            
                    "db-server-1",
                    "db-server-2")
                .dbNodeStorageSizeInGbs(120)
                .memorySizeInGbs(60)
                .dataCollectionOptions(CloudVmClusterDataCollectionOptionsArgs.builder()
                    .isDiagnosticsEventsEnabled(false)
                    .isHealthMonitoringEnabled(false)
                    .isIncidentLogsEnabled(false)
                    .build())
                .build());
    
            var withAllParameters = new CloudVmCluster("withAllParameters", CloudVmClusterArgs.builder()
                .displayName("my-vmc")
                .cloudExadataInfrastructureId("exa_gjrmtxl4qk")
                .cpuCoreCount(6)
                .giVersion("23.0.0.0")
                .hostnamePrefix("apollo12")
                .sshPublicKeys("my-ssh-key")
                .odbNetworkId("odbnet_3l9st3litg")
                .isLocalBackupEnabled(true)
                .isSparseDiskgroupEnabled(true)
                .licenseModel("LICENSE_INCLUDED")
                .dataStorageSizeInTbs(20.0)
                .dbServers(            
                    "my-dbserver-1",
                    "my-db-server-2")
                .dbNodeStorageSizeInGbs(120)
                .memorySizeInGbs(60)
                .clusterName("julia-13")
                .timezone("UTC")
                .scanListenerPortTcp(1521)
                .tags(Map.of("env", "dev"))
                .dataCollectionOptions(CloudVmClusterDataCollectionOptionsArgs.builder()
                    .isDiagnosticsEventsEnabled(true)
                    .isHealthMonitoringEnabled(true)
                    .isIncidentLogsEnabled(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      withMinimumParameter:
        type: aws:odb:CloudVmCluster
        name: with_minimum_parameter
        properties:
          displayName: my-exa-infra
          cloudExadataInfrastructureId: exa_gjrmtxl4qk
          cpuCoreCount: 6
          giVersion: 23.0.0.0
          hostnamePrefix: apollo12
          sshPublicKeys:
            - public-ssh-key
          odbNetworkId: odbnet_3l9st3litg
          isLocalBackupEnabled: true
          isSparseDiskgroupEnabled: true
          licenseModel: LICENSE_INCLUDED
          dataStorageSizeInTbs: 20
          dbServers:
            - db-server-1
            - db-server-2
          dbNodeStorageSizeInGbs: 120
          memorySizeInGbs: 60
          dataCollectionOptions:
            isDiagnosticsEventsEnabled: false
            isHealthMonitoringEnabled: false
            isIncidentLogsEnabled: false
      withAllParameters:
        type: aws:odb:CloudVmCluster
        name: with_all_parameters
        properties:
          displayName: my-vmc
          cloudExadataInfrastructureId: exa_gjrmtxl4qk
          cpuCoreCount: 6
          giVersion: 23.0.0.0
          hostnamePrefix: apollo12
          sshPublicKeys:
            - my-ssh-key
          odbNetworkId: odbnet_3l9st3litg
          isLocalBackupEnabled: true
          isSparseDiskgroupEnabled: true
          licenseModel: LICENSE_INCLUDED
          dataStorageSizeInTbs: 20
          dbServers:
            - my-dbserver-1
            - my-db-server-2
          dbNodeStorageSizeInGbs: 120
          memorySizeInGbs: 60
          clusterName: julia-13
          timezone: UTC
          scanListenerPortTcp: 1521
          tags:
            env: dev
          dataCollectionOptions:
            isDiagnosticsEventsEnabled: true
            isHealthMonitoringEnabled: true
            isIncidentLogsEnabled: true
    

    Create CloudVmCluster Resource

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

    Constructor syntax

    new CloudVmCluster(name: string, args: CloudVmClusterArgs, opts?: CustomResourceOptions);
    @overload
    def CloudVmCluster(resource_name: str,
                       args: CloudVmClusterArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudVmCluster(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       hostname_prefix: Optional[str] = None,
                       ssh_public_keys: Optional[Sequence[str]] = None,
                       cpu_core_count: Optional[int] = None,
                       odb_network_id: Optional[str] = None,
                       data_storage_size_in_tbs: Optional[float] = None,
                       cloud_exadata_infrastructure_id: Optional[str] = None,
                       db_servers: Optional[Sequence[str]] = None,
                       display_name: Optional[str] = None,
                       gi_version: Optional[str] = None,
                       is_local_backup_enabled: Optional[bool] = None,
                       db_node_storage_size_in_gbs: Optional[int] = None,
                       is_sparse_diskgroup_enabled: Optional[bool] = None,
                       license_model: Optional[str] = None,
                       memory_size_in_gbs: Optional[int] = None,
                       data_collection_options: Optional[CloudVmClusterDataCollectionOptionsArgs] = None,
                       region: Optional[str] = None,
                       scan_listener_port_tcp: Optional[int] = None,
                       cluster_name: Optional[str] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       timeouts: Optional[CloudVmClusterTimeoutsArgs] = None,
                       timezone: Optional[str] = None)
    func NewCloudVmCluster(ctx *Context, name string, args CloudVmClusterArgs, opts ...ResourceOption) (*CloudVmCluster, error)
    public CloudVmCluster(string name, CloudVmClusterArgs args, CustomResourceOptions? opts = null)
    public CloudVmCluster(String name, CloudVmClusterArgs args)
    public CloudVmCluster(String name, CloudVmClusterArgs args, CustomResourceOptions options)
    
    type: aws:odb:CloudVmCluster
    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 CloudVmClusterArgs
    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 CloudVmClusterArgs
    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 CloudVmClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudVmClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudVmClusterArgs
    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 cloudVmClusterResource = new Aws.Odb.CloudVmCluster("cloudVmClusterResource", new()
    {
        HostnamePrefix = "string",
        SshPublicKeys = new[]
        {
            "string",
        },
        CpuCoreCount = 0,
        OdbNetworkId = "string",
        DataStorageSizeInTbs = 0,
        CloudExadataInfrastructureId = "string",
        DbServers = new[]
        {
            "string",
        },
        DisplayName = "string",
        GiVersion = "string",
        IsLocalBackupEnabled = false,
        DbNodeStorageSizeInGbs = 0,
        IsSparseDiskgroupEnabled = false,
        LicenseModel = "string",
        MemorySizeInGbs = 0,
        DataCollectionOptions = new Aws.Odb.Inputs.CloudVmClusterDataCollectionOptionsArgs
        {
            IsDiagnosticsEventsEnabled = false,
            IsHealthMonitoringEnabled = false,
            IsIncidentLogsEnabled = false,
        },
        Region = "string",
        ScanListenerPortTcp = 0,
        ClusterName = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Odb.Inputs.CloudVmClusterTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        Timezone = "string",
    });
    
    example, err := odb.NewCloudVmCluster(ctx, "cloudVmClusterResource", &odb.CloudVmClusterArgs{
    	HostnamePrefix: pulumi.String("string"),
    	SshPublicKeys: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CpuCoreCount:                 pulumi.Int(0),
    	OdbNetworkId:                 pulumi.String("string"),
    	DataStorageSizeInTbs:         pulumi.Float64(0),
    	CloudExadataInfrastructureId: pulumi.String("string"),
    	DbServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DisplayName:              pulumi.String("string"),
    	GiVersion:                pulumi.String("string"),
    	IsLocalBackupEnabled:     pulumi.Bool(false),
    	DbNodeStorageSizeInGbs:   pulumi.Int(0),
    	IsSparseDiskgroupEnabled: pulumi.Bool(false),
    	LicenseModel:             pulumi.String("string"),
    	MemorySizeInGbs:          pulumi.Int(0),
    	DataCollectionOptions: &odb.CloudVmClusterDataCollectionOptionsArgs{
    		IsDiagnosticsEventsEnabled: pulumi.Bool(false),
    		IsHealthMonitoringEnabled:  pulumi.Bool(false),
    		IsIncidentLogsEnabled:      pulumi.Bool(false),
    	},
    	Region:              pulumi.String("string"),
    	ScanListenerPortTcp: pulumi.Int(0),
    	ClusterName:         pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &odb.CloudVmClusterTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	Timezone: pulumi.String("string"),
    })
    
    var cloudVmClusterResource = new CloudVmCluster("cloudVmClusterResource", CloudVmClusterArgs.builder()
        .hostnamePrefix("string")
        .sshPublicKeys("string")
        .cpuCoreCount(0)
        .odbNetworkId("string")
        .dataStorageSizeInTbs(0.0)
        .cloudExadataInfrastructureId("string")
        .dbServers("string")
        .displayName("string")
        .giVersion("string")
        .isLocalBackupEnabled(false)
        .dbNodeStorageSizeInGbs(0)
        .isSparseDiskgroupEnabled(false)
        .licenseModel("string")
        .memorySizeInGbs(0)
        .dataCollectionOptions(CloudVmClusterDataCollectionOptionsArgs.builder()
            .isDiagnosticsEventsEnabled(false)
            .isHealthMonitoringEnabled(false)
            .isIncidentLogsEnabled(false)
            .build())
        .region("string")
        .scanListenerPortTcp(0)
        .clusterName("string")
        .tags(Map.of("string", "string"))
        .timeouts(CloudVmClusterTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .timezone("string")
        .build());
    
    cloud_vm_cluster_resource = aws.odb.CloudVmCluster("cloudVmClusterResource",
        hostname_prefix="string",
        ssh_public_keys=["string"],
        cpu_core_count=0,
        odb_network_id="string",
        data_storage_size_in_tbs=0,
        cloud_exadata_infrastructure_id="string",
        db_servers=["string"],
        display_name="string",
        gi_version="string",
        is_local_backup_enabled=False,
        db_node_storage_size_in_gbs=0,
        is_sparse_diskgroup_enabled=False,
        license_model="string",
        memory_size_in_gbs=0,
        data_collection_options={
            "is_diagnostics_events_enabled": False,
            "is_health_monitoring_enabled": False,
            "is_incident_logs_enabled": False,
        },
        region="string",
        scan_listener_port_tcp=0,
        cluster_name="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        timezone="string")
    
    const cloudVmClusterResource = new aws.odb.CloudVmCluster("cloudVmClusterResource", {
        hostnamePrefix: "string",
        sshPublicKeys: ["string"],
        cpuCoreCount: 0,
        odbNetworkId: "string",
        dataStorageSizeInTbs: 0,
        cloudExadataInfrastructureId: "string",
        dbServers: ["string"],
        displayName: "string",
        giVersion: "string",
        isLocalBackupEnabled: false,
        dbNodeStorageSizeInGbs: 0,
        isSparseDiskgroupEnabled: false,
        licenseModel: "string",
        memorySizeInGbs: 0,
        dataCollectionOptions: {
            isDiagnosticsEventsEnabled: false,
            isHealthMonitoringEnabled: false,
            isIncidentLogsEnabled: false,
        },
        region: "string",
        scanListenerPortTcp: 0,
        clusterName: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        timezone: "string",
    });
    
    type: aws:odb:CloudVmCluster
    properties:
        cloudExadataInfrastructureId: string
        clusterName: string
        cpuCoreCount: 0
        dataCollectionOptions:
            isDiagnosticsEventsEnabled: false
            isHealthMonitoringEnabled: false
            isIncidentLogsEnabled: false
        dataStorageSizeInTbs: 0
        dbNodeStorageSizeInGbs: 0
        dbServers:
            - string
        displayName: string
        giVersion: string
        hostnamePrefix: string
        isLocalBackupEnabled: false
        isSparseDiskgroupEnabled: false
        licenseModel: string
        memorySizeInGbs: 0
        odbNetworkId: string
        region: string
        scanListenerPortTcp: 0
        sshPublicKeys:
            - string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
        timezone: string
    

    CloudVmCluster Resource Properties

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

    Inputs

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

    The CloudVmCluster resource accepts the following input properties:

    CloudExadataInfrastructureId string
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    CpuCoreCount int
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    DataStorageSizeInTbs double

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    DbServers List<string>
    The list of database servers for the VM cluster. Changing this will create a new resource.
    DisplayName string
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    GiVersion string
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    HostnamePrefix string
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    OdbNetworkId string
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    SshPublicKeys List<string>
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    ClusterName string
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    DataCollectionOptions CloudVmClusterDataCollectionOptions
    The set of preferences for the various diagnostic collection options for the VM cluster.
    DbNodeStorageSizeInGbs int
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    IsLocalBackupEnabled bool
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    IsSparseDiskgroupEnabled bool
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    LicenseModel string
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    ScanListenerPortTcp int
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    Tags Dictionary<string, string>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts CloudVmClusterTimeouts
    Timezone string
    The configured time zone of the VM cluster. Changing this will create a new resource.
    CloudExadataInfrastructureId string
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    CpuCoreCount int
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    DataStorageSizeInTbs float64

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    DbServers []string
    The list of database servers for the VM cluster. Changing this will create a new resource.
    DisplayName string
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    GiVersion string
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    HostnamePrefix string
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    OdbNetworkId string
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    SshPublicKeys []string
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    ClusterName string
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    DataCollectionOptions CloudVmClusterDataCollectionOptionsArgs
    The set of preferences for the various diagnostic collection options for the VM cluster.
    DbNodeStorageSizeInGbs int
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    IsLocalBackupEnabled bool
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    IsSparseDiskgroupEnabled bool
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    LicenseModel string
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    ScanListenerPortTcp int
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    Tags map[string]string
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts CloudVmClusterTimeoutsArgs
    Timezone string
    The configured time zone of the VM cluster. Changing this will create a new resource.
    cloudExadataInfrastructureId String
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    cpuCoreCount Integer
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    dataStorageSizeInTbs Double

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    dbServers List<String>
    The list of database servers for the VM cluster. Changing this will create a new resource.
    displayName String
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    giVersion String
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    hostnamePrefix String
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    odbNetworkId String
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    sshPublicKeys List<String>
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    clusterName String
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    The set of preferences for the various diagnostic collection options for the VM cluster.
    dbNodeStorageSizeInGbs Integer
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    isLocalBackupEnabled Boolean
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    isSparseDiskgroupEnabled Boolean
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    licenseModel String
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    memorySizeInGbs Integer
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scanListenerPortTcp Integer
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    tags Map<String,String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudVmClusterTimeouts
    timezone String
    The configured time zone of the VM cluster. Changing this will create a new resource.
    cloudExadataInfrastructureId string
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    cpuCoreCount number
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    dataStorageSizeInTbs number

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    dbServers string[]
    The list of database servers for the VM cluster. Changing this will create a new resource.
    displayName string
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    giVersion string
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    hostnamePrefix string
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    odbNetworkId string
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    sshPublicKeys string[]
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    clusterName string
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    The set of preferences for the various diagnostic collection options for the VM cluster.
    dbNodeStorageSizeInGbs number
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    isLocalBackupEnabled boolean
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    isSparseDiskgroupEnabled boolean
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    licenseModel string
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    memorySizeInGbs number
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scanListenerPortTcp number
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    tags {[key: string]: string}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudVmClusterTimeouts
    timezone string
    The configured time zone of the VM cluster. Changing this will create a new resource.
    cloud_exadata_infrastructure_id str
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    cpu_core_count int
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    data_storage_size_in_tbs float

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    db_servers Sequence[str]
    The list of database servers for the VM cluster. Changing this will create a new resource.
    display_name str
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    gi_version str
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    hostname_prefix str
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    odb_network_id str
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    ssh_public_keys Sequence[str]
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    cluster_name str
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    data_collection_options CloudVmClusterDataCollectionOptionsArgs
    The set of preferences for the various diagnostic collection options for the VM cluster.
    db_node_storage_size_in_gbs int
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    is_local_backup_enabled bool
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    is_sparse_diskgroup_enabled bool
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    license_model str
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    memory_size_in_gbs int
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scan_listener_port_tcp int
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    tags Mapping[str, str]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudVmClusterTimeoutsArgs
    timezone str
    The configured time zone of the VM cluster. Changing this will create a new resource.
    cloudExadataInfrastructureId String
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    cpuCoreCount Number
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    dataStorageSizeInTbs Number

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    dbServers List<String>
    The list of database servers for the VM cluster. Changing this will create a new resource.
    displayName String
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    giVersion String
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    hostnamePrefix String
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    odbNetworkId String
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    sshPublicKeys List<String>
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    clusterName String
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    dataCollectionOptions Property Map
    The set of preferences for the various diagnostic collection options for the VM cluster.
    dbNodeStorageSizeInGbs Number
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    isLocalBackupEnabled Boolean
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    isSparseDiskgroupEnabled Boolean
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    licenseModel String
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    memorySizeInGbs Number
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scanListenerPortTcp Number
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    tags Map<String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map
    timezone String
    The configured time zone of the VM cluster. Changing this will create a new resource.

    Outputs

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

    Arn string
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    ComputeModel string
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    CreatedAt string
    The timestamp when the VM cluster was created.
    DiskRedundancy string
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    Domain string
    The domain name associated with the VM cluster.
    GiVersionComputed string
    A complete software version of Oracle Grid Infrastructure (GI).
    HostnamePrefixComputed string
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    IormConfigCaches List<CloudVmClusterIormConfigCach>
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    LastUpdateHistoryEntryId string
    The OCID of the most recent maintenance update history entry.
    ListenerPort int
    The listener port number configured on the VM cluster.
    NodeCount int
    The total number of nodes in the VM cluster.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with the VM cluster.
    OciUrl string
    The HTTPS link to the VM cluster resource in OCI.
    Ocid string
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    PercentProgress double
    The percentage of progress made on the current operation for the VM cluster.
    ScanDnsName string
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    ScanIpIds List<string>
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    Shape string
    The hardware model name of the Exadata infrastructure running the VM cluster.
    Status string
    The current lifecycle status of the VM cluster.
    StatusReason string
    Additional information regarding the current status of the VM cluster.
    StorageSizeInGbs int
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    SystemVersion string
    The operating system version of the image chosen for the VM cluster.
    TagsAll Dictionary<string, string>
    The combined set of user-defined and provider-defined tags.
    VipIds List<string>
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    Arn string
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    ComputeModel string
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    CreatedAt string
    The timestamp when the VM cluster was created.
    DiskRedundancy string
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    Domain string
    The domain name associated with the VM cluster.
    GiVersionComputed string
    A complete software version of Oracle Grid Infrastructure (GI).
    HostnamePrefixComputed string
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    IormConfigCaches []CloudVmClusterIormConfigCach
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    LastUpdateHistoryEntryId string
    The OCID of the most recent maintenance update history entry.
    ListenerPort int
    The listener port number configured on the VM cluster.
    NodeCount int
    The total number of nodes in the VM cluster.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with the VM cluster.
    OciUrl string
    The HTTPS link to the VM cluster resource in OCI.
    Ocid string
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    PercentProgress float64
    The percentage of progress made on the current operation for the VM cluster.
    ScanDnsName string
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    ScanIpIds []string
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    Shape string
    The hardware model name of the Exadata infrastructure running the VM cluster.
    Status string
    The current lifecycle status of the VM cluster.
    StatusReason string
    Additional information regarding the current status of the VM cluster.
    StorageSizeInGbs int
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    SystemVersion string
    The operating system version of the image chosen for the VM cluster.
    TagsAll map[string]string
    The combined set of user-defined and provider-defined tags.
    VipIds []string
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn String
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    computeModel String
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    createdAt String
    The timestamp when the VM cluster was created.
    diskRedundancy String
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    domain String
    The domain name associated with the VM cluster.
    giVersionComputed String
    A complete software version of Oracle Grid Infrastructure (GI).
    hostnamePrefixComputed String
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    id String
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches List<CloudVmClusterIormConfigCach>
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    lastUpdateHistoryEntryId String
    The OCID of the most recent maintenance update history entry.
    listenerPort Integer
    The listener port number configured on the VM cluster.
    nodeCount Integer
    The total number of nodes in the VM cluster.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with the VM cluster.
    ociUrl String
    The HTTPS link to the VM cluster resource in OCI.
    ocid String
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    percentProgress Double
    The percentage of progress made on the current operation for the VM cluster.
    scanDnsName String
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scanIpIds List<String>
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    shape String
    The hardware model name of the Exadata infrastructure running the VM cluster.
    status String
    The current lifecycle status of the VM cluster.
    statusReason String
    Additional information regarding the current status of the VM cluster.
    storageSizeInGbs Integer
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    systemVersion String
    The operating system version of the image chosen for the VM cluster.
    tagsAll Map<String,String>
    The combined set of user-defined and provider-defined tags.
    vipIds List<String>
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn string
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    computeModel string
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    createdAt string
    The timestamp when the VM cluster was created.
    diskRedundancy string
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    domain string
    The domain name associated with the VM cluster.
    giVersionComputed string
    A complete software version of Oracle Grid Infrastructure (GI).
    hostnamePrefixComputed string
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    id string
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches CloudVmClusterIormConfigCach[]
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    lastUpdateHistoryEntryId string
    The OCID of the most recent maintenance update history entry.
    listenerPort number
    The listener port number configured on the VM cluster.
    nodeCount number
    The total number of nodes in the VM cluster.
    ociResourceAnchorName string
    The name of the OCI resource anchor associated with the VM cluster.
    ociUrl string
    The HTTPS link to the VM cluster resource in OCI.
    ocid string
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    percentProgress number
    The percentage of progress made on the current operation for the VM cluster.
    scanDnsName string
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scanIpIds string[]
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    shape string
    The hardware model name of the Exadata infrastructure running the VM cluster.
    status string
    The current lifecycle status of the VM cluster.
    statusReason string
    Additional information regarding the current status of the VM cluster.
    storageSizeInGbs number
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    systemVersion string
    The operating system version of the image chosen for the VM cluster.
    tagsAll {[key: string]: string}
    The combined set of user-defined and provider-defined tags.
    vipIds string[]
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn str
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    compute_model str
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    created_at str
    The timestamp when the VM cluster was created.
    disk_redundancy str
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    domain str
    The domain name associated with the VM cluster.
    gi_version_computed str
    A complete software version of Oracle Grid Infrastructure (GI).
    hostname_prefix_computed str
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    id str
    The provider-assigned unique ID for this managed resource.
    iorm_config_caches Sequence[CloudVmClusterIormConfigCach]
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    last_update_history_entry_id str
    The OCID of the most recent maintenance update history entry.
    listener_port int
    The listener port number configured on the VM cluster.
    node_count int
    The total number of nodes in the VM cluster.
    oci_resource_anchor_name str
    The name of the OCI resource anchor associated with the VM cluster.
    oci_url str
    The HTTPS link to the VM cluster resource in OCI.
    ocid str
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    percent_progress float
    The percentage of progress made on the current operation for the VM cluster.
    scan_dns_name str
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scan_dns_record_id str
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scan_ip_ids Sequence[str]
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    shape str
    The hardware model name of the Exadata infrastructure running the VM cluster.
    status str
    The current lifecycle status of the VM cluster.
    status_reason str
    Additional information regarding the current status of the VM cluster.
    storage_size_in_gbs int
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    system_version str
    The operating system version of the image chosen for the VM cluster.
    tags_all Mapping[str, str]
    The combined set of user-defined and provider-defined tags.
    vip_ids Sequence[str]
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn String
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    computeModel String
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    createdAt String
    The timestamp when the VM cluster was created.
    diskRedundancy String
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    domain String
    The domain name associated with the VM cluster.
    giVersionComputed String
    A complete software version of Oracle Grid Infrastructure (GI).
    hostnamePrefixComputed String
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    id String
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches List<Property Map>
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    lastUpdateHistoryEntryId String
    The OCID of the most recent maintenance update history entry.
    listenerPort Number
    The listener port number configured on the VM cluster.
    nodeCount Number
    The total number of nodes in the VM cluster.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with the VM cluster.
    ociUrl String
    The HTTPS link to the VM cluster resource in OCI.
    ocid String
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    percentProgress Number
    The percentage of progress made on the current operation for the VM cluster.
    scanDnsName String
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scanIpIds List<String>
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    shape String
    The hardware model name of the Exadata infrastructure running the VM cluster.
    status String
    The current lifecycle status of the VM cluster.
    statusReason String
    Additional information regarding the current status of the VM cluster.
    storageSizeInGbs Number
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    systemVersion String
    The operating system version of the image chosen for the VM cluster.
    tagsAll Map<String>
    The combined set of user-defined and provider-defined tags.
    vipIds List<String>
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.

    Look up Existing CloudVmCluster Resource

    Get an existing CloudVmCluster 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?: CloudVmClusterState, opts?: CustomResourceOptions): CloudVmCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            cloud_exadata_infrastructure_id: Optional[str] = None,
            cluster_name: Optional[str] = None,
            compute_model: Optional[str] = None,
            cpu_core_count: Optional[int] = None,
            created_at: Optional[str] = None,
            data_collection_options: Optional[CloudVmClusterDataCollectionOptionsArgs] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_servers: Optional[Sequence[str]] = None,
            disk_redundancy: Optional[str] = None,
            display_name: Optional[str] = None,
            domain: Optional[str] = None,
            gi_version: Optional[str] = None,
            gi_version_computed: Optional[str] = None,
            hostname_prefix: Optional[str] = None,
            hostname_prefix_computed: Optional[str] = None,
            iorm_config_caches: Optional[Sequence[CloudVmClusterIormConfigCachArgs]] = None,
            is_local_backup_enabled: Optional[bool] = None,
            is_sparse_diskgroup_enabled: Optional[bool] = None,
            last_update_history_entry_id: Optional[str] = None,
            license_model: Optional[str] = None,
            listener_port: Optional[int] = None,
            memory_size_in_gbs: Optional[int] = None,
            node_count: Optional[int] = None,
            oci_resource_anchor_name: Optional[str] = None,
            oci_url: Optional[str] = None,
            ocid: Optional[str] = None,
            odb_network_id: Optional[str] = None,
            percent_progress: Optional[float] = None,
            region: 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,
            shape: Optional[str] = None,
            ssh_public_keys: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            status_reason: Optional[str] = None,
            storage_size_in_gbs: Optional[int] = None,
            system_version: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[CloudVmClusterTimeoutsArgs] = None,
            timezone: Optional[str] = None,
            vip_ids: Optional[Sequence[str]] = None) -> CloudVmCluster
    func GetCloudVmCluster(ctx *Context, name string, id IDInput, state *CloudVmClusterState, opts ...ResourceOption) (*CloudVmCluster, error)
    public static CloudVmCluster Get(string name, Input<string> id, CloudVmClusterState? state, CustomResourceOptions? opts = null)
    public static CloudVmCluster get(String name, Output<String> id, CloudVmClusterState state, CustomResourceOptions options)
    resources:  _:    type: aws:odb:CloudVmCluster    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    CloudExadataInfrastructureId string
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    ClusterName string
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    ComputeModel string
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    CpuCoreCount int
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    CreatedAt string
    The timestamp when the VM cluster was created.
    DataCollectionOptions CloudVmClusterDataCollectionOptions
    The set of preferences for the various diagnostic collection options for the VM cluster.
    DataStorageSizeInTbs double

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    DbNodeStorageSizeInGbs int
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    DbServers List<string>
    The list of database servers for the VM cluster. Changing this will create a new resource.
    DiskRedundancy string
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    DisplayName string
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    Domain string
    The domain name associated with the VM cluster.
    GiVersion string
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    GiVersionComputed string
    A complete software version of Oracle Grid Infrastructure (GI).
    HostnamePrefix string
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    HostnamePrefixComputed string
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    IormConfigCaches List<CloudVmClusterIormConfigCach>
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    IsLocalBackupEnabled bool
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    IsSparseDiskgroupEnabled bool
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    LastUpdateHistoryEntryId string
    The OCID of the most recent maintenance update history entry.
    LicenseModel string
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    ListenerPort int
    The listener port number configured on the VM cluster.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    NodeCount int
    The total number of nodes in the VM cluster.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with the VM cluster.
    OciUrl string
    The HTTPS link to the VM cluster resource in OCI.
    Ocid string
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    OdbNetworkId string
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    PercentProgress double
    The percentage of progress made on the current operation for the VM cluster.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    ScanDnsName string
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    ScanIpIds List<string>
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    ScanListenerPortTcp int
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    Shape string
    The hardware model name of the Exadata infrastructure running the VM cluster.
    SshPublicKeys List<string>
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    Status string
    The current lifecycle status of the VM cluster.
    StatusReason string
    Additional information regarding the current status of the VM cluster.
    StorageSizeInGbs int
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    SystemVersion string
    The operating system version of the image chosen for the VM cluster.
    Tags Dictionary<string, string>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    The combined set of user-defined and provider-defined tags.
    Timeouts CloudVmClusterTimeouts
    Timezone string
    The configured time zone of the VM cluster. Changing this will create a new resource.
    VipIds List<string>
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    Arn string
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    CloudExadataInfrastructureId string
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    ClusterName string
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    ComputeModel string
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    CpuCoreCount int
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    CreatedAt string
    The timestamp when the VM cluster was created.
    DataCollectionOptions CloudVmClusterDataCollectionOptionsArgs
    The set of preferences for the various diagnostic collection options for the VM cluster.
    DataStorageSizeInTbs float64

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    DbNodeStorageSizeInGbs int
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    DbServers []string
    The list of database servers for the VM cluster. Changing this will create a new resource.
    DiskRedundancy string
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    DisplayName string
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    Domain string
    The domain name associated with the VM cluster.
    GiVersion string
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    GiVersionComputed string
    A complete software version of Oracle Grid Infrastructure (GI).
    HostnamePrefix string
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    HostnamePrefixComputed string
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    IormConfigCaches []CloudVmClusterIormConfigCachArgs
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    IsLocalBackupEnabled bool
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    IsSparseDiskgroupEnabled bool
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    LastUpdateHistoryEntryId string
    The OCID of the most recent maintenance update history entry.
    LicenseModel string
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    ListenerPort int
    The listener port number configured on the VM cluster.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    NodeCount int
    The total number of nodes in the VM cluster.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with the VM cluster.
    OciUrl string
    The HTTPS link to the VM cluster resource in OCI.
    Ocid string
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    OdbNetworkId string
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    PercentProgress float64
    The percentage of progress made on the current operation for the VM cluster.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    ScanDnsName string
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    ScanIpIds []string
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    ScanListenerPortTcp int
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    Shape string
    The hardware model name of the Exadata infrastructure running the VM cluster.
    SshPublicKeys []string
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    Status string
    The current lifecycle status of the VM cluster.
    StatusReason string
    Additional information regarding the current status of the VM cluster.
    StorageSizeInGbs int
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    SystemVersion string
    The operating system version of the image chosen for the VM cluster.
    Tags map[string]string
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    The combined set of user-defined and provider-defined tags.
    Timeouts CloudVmClusterTimeoutsArgs
    Timezone string
    The configured time zone of the VM cluster. Changing this will create a new resource.
    VipIds []string
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn String
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    cloudExadataInfrastructureId String
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    clusterName String
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    computeModel String
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    cpuCoreCount Integer
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    createdAt String
    The timestamp when the VM cluster was created.
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    The set of preferences for the various diagnostic collection options for the VM cluster.
    dataStorageSizeInTbs Double

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    dbNodeStorageSizeInGbs Integer
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    dbServers List<String>
    The list of database servers for the VM cluster. Changing this will create a new resource.
    diskRedundancy String
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    displayName String
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    domain String
    The domain name associated with the VM cluster.
    giVersion String
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    giVersionComputed String
    A complete software version of Oracle Grid Infrastructure (GI).
    hostnamePrefix String
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    hostnamePrefixComputed String
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    iormConfigCaches List<CloudVmClusterIormConfigCach>
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    isLocalBackupEnabled Boolean
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    isSparseDiskgroupEnabled Boolean
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    lastUpdateHistoryEntryId String
    The OCID of the most recent maintenance update history entry.
    licenseModel String
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    listenerPort Integer
    The listener port number configured on the VM cluster.
    memorySizeInGbs Integer
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    nodeCount Integer
    The total number of nodes in the VM cluster.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with the VM cluster.
    ociUrl String
    The HTTPS link to the VM cluster resource in OCI.
    ocid String
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    odbNetworkId String
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    percentProgress Double
    The percentage of progress made on the current operation for the VM cluster.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scanDnsName String
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scanIpIds List<String>
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    scanListenerPortTcp Integer
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    shape String
    The hardware model name of the Exadata infrastructure running the VM cluster.
    sshPublicKeys List<String>
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    status String
    The current lifecycle status of the VM cluster.
    statusReason String
    Additional information regarding the current status of the VM cluster.
    storageSizeInGbs Integer
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    systemVersion String
    The operating system version of the image chosen for the VM cluster.
    tags Map<String,String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    The combined set of user-defined and provider-defined tags.
    timeouts CloudVmClusterTimeouts
    timezone String
    The configured time zone of the VM cluster. Changing this will create a new resource.
    vipIds List<String>
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn string
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    cloudExadataInfrastructureId string
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    clusterName string
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    computeModel string
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    cpuCoreCount number
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    createdAt string
    The timestamp when the VM cluster was created.
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    The set of preferences for the various diagnostic collection options for the VM cluster.
    dataStorageSizeInTbs number

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    dbNodeStorageSizeInGbs number
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    dbServers string[]
    The list of database servers for the VM cluster. Changing this will create a new resource.
    diskRedundancy string
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    displayName string
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    domain string
    The domain name associated with the VM cluster.
    giVersion string
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    giVersionComputed string
    A complete software version of Oracle Grid Infrastructure (GI).
    hostnamePrefix string
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    hostnamePrefixComputed string
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    iormConfigCaches CloudVmClusterIormConfigCach[]
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    isLocalBackupEnabled boolean
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    isSparseDiskgroupEnabled boolean
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    lastUpdateHistoryEntryId string
    The OCID of the most recent maintenance update history entry.
    licenseModel string
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    listenerPort number
    The listener port number configured on the VM cluster.
    memorySizeInGbs number
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    nodeCount number
    The total number of nodes in the VM cluster.
    ociResourceAnchorName string
    The name of the OCI resource anchor associated with the VM cluster.
    ociUrl string
    The HTTPS link to the VM cluster resource in OCI.
    ocid string
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    odbNetworkId string
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    percentProgress number
    The percentage of progress made on the current operation for the VM cluster.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scanDnsName string
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scanIpIds string[]
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    scanListenerPortTcp number
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    shape string
    The hardware model name of the Exadata infrastructure running the VM cluster.
    sshPublicKeys string[]
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    status string
    The current lifecycle status of the VM cluster.
    statusReason string
    Additional information regarding the current status of the VM cluster.
    storageSizeInGbs number
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    systemVersion string
    The operating system version of the image chosen for the VM cluster.
    tags {[key: string]: string}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    The combined set of user-defined and provider-defined tags.
    timeouts CloudVmClusterTimeouts
    timezone string
    The configured time zone of the VM cluster. Changing this will create a new resource.
    vipIds string[]
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn str
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    cloud_exadata_infrastructure_id str
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    cluster_name str
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    compute_model str
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    cpu_core_count int
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    created_at str
    The timestamp when the VM cluster was created.
    data_collection_options CloudVmClusterDataCollectionOptionsArgs
    The set of preferences for the various diagnostic collection options for the VM cluster.
    data_storage_size_in_tbs float

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    db_node_storage_size_in_gbs int
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    db_servers Sequence[str]
    The list of database servers for the VM cluster. Changing this will create a new resource.
    disk_redundancy str
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    display_name str
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    domain str
    The domain name associated with the VM cluster.
    gi_version str
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    gi_version_computed str
    A complete software version of Oracle Grid Infrastructure (GI).
    hostname_prefix str
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    hostname_prefix_computed str
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    iorm_config_caches Sequence[CloudVmClusterIormConfigCachArgs]
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    is_local_backup_enabled bool
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    is_sparse_diskgroup_enabled bool
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    last_update_history_entry_id str
    The OCID of the most recent maintenance update history entry.
    license_model str
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    listener_port int
    The listener port number configured on the VM cluster.
    memory_size_in_gbs int
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    node_count int
    The total number of nodes in the VM cluster.
    oci_resource_anchor_name str
    The name of the OCI resource anchor associated with the VM cluster.
    oci_url str
    The HTTPS link to the VM cluster resource in OCI.
    ocid str
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    odb_network_id str
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    percent_progress float
    The percentage of progress made on the current operation for the VM cluster.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scan_dns_name str
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scan_dns_record_id str
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scan_ip_ids Sequence[str]
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    scan_listener_port_tcp int
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    shape str
    The hardware model name of the Exadata infrastructure running the VM cluster.
    ssh_public_keys Sequence[str]
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    status str
    The current lifecycle status of the VM cluster.
    status_reason str
    Additional information regarding the current status of the VM cluster.
    storage_size_in_gbs int
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    system_version str
    The operating system version of the image chosen for the VM cluster.
    tags Mapping[str, str]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    The combined set of user-defined and provider-defined tags.
    timeouts CloudVmClusterTimeoutsArgs
    timezone str
    The configured time zone of the VM cluster. Changing this will create a new resource.
    vip_ids Sequence[str]
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.
    arn String
    The Amazon Resource Name (ARN) for the cloud vm cluster.
    cloudExadataInfrastructureId String
    The unique identifier of the Exadata infrastructure for this VM cluster. Changing this will create a new resource.
    clusterName String
    The name of the Grid Infrastructure (GI) cluster. Changing this will create a new resource.
    computeModel String
    The compute model used when the instance is created or cloned — either ECPU or OCPU. ECPU is a virtualized compute unit; OCPU is a physical processor core with hyper-threading.
    cpuCoreCount Number
    The number of CPU cores to enable on the VM cluster. Changing this will create a new resource.
    createdAt String
    The timestamp when the VM cluster was created.
    dataCollectionOptions Property Map
    The set of preferences for the various diagnostic collection options for the VM cluster.
    dataStorageSizeInTbs Number

    The size of the data disk group, in terabytes (TBs), to allocate for the VM cluster. Changing this will create a new resource.

    The following arguments are optional:

    dbNodeStorageSizeInGbs Number
    The amount of local node storage, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    dbServers List<String>
    The list of database servers for the VM cluster. Changing this will create a new resource.
    diskRedundancy String
    The type of redundancy for the VM cluster: NORMAL (2-way) or HIGH (3-way).

    • AttrDomain - The domain name associated with the VM cluster.
    displayName String
    A user-friendly name for the VM cluster. Changing this will create a new resource.
    domain String
    The domain name associated with the VM cluster.
    giVersion String
    A valid software version of Oracle Grid Infrastructure (GI). To get the list of valid values, use the ListGiVersions operation and specify the shape of the Exadata infrastructure. Example: 19.0.0.0 Changing this will create a new resource.
    giVersionComputed String
    A complete software version of Oracle Grid Infrastructure (GI).
    hostnamePrefix String
    The host name prefix for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. Changing this will create a new resource.
    hostnamePrefixComputed String
    The host name for the VM cluster. Constraints: - Can't be "localhost" or "hostname". - Can't contain "-version". - The maximum length of the combined hostname and domain is 63 characters. - The hostname must be unique within the subnet. This member is required. Changing this will create a new resource.
    iormConfigCaches List<Property Map>
    The Exadata IORM (I/O Resource Manager) configuration cache details for the VM cluster.
    isLocalBackupEnabled Boolean
    Specifies whether to enable database backups to local Exadata storage for the VM cluster. Changing this will create a new resource.
    isSparseDiskgroupEnabled Boolean
    Specifies whether to create a sparse disk group for the VM cluster. Changing this will create a new resource.
    lastUpdateHistoryEntryId String
    The OCID of the most recent maintenance update history entry.
    licenseModel String
    The Oracle license model to apply to the VM cluster. Default: LICENSE_INCLUDED. Changing this will create a new resource.
    listenerPort Number
    The listener port number configured on the VM cluster.
    memorySizeInGbs Number
    The amount of memory, in gigabytes (GBs), to allocate for the VM cluster. Changing this will create a new resource.
    nodeCount Number
    The total number of nodes in the VM cluster.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with the VM cluster.
    ociUrl String
    The HTTPS link to the VM cluster resource in OCI.
    ocid String
    The OCID (Oracle Cloud Identifier) of the VM cluster.
    odbNetworkId String
    The unique identifier of the ODB network for the VM cluster. Changing this will create a new resource.
    percentProgress Number
    The percentage of progress made on the current operation for the VM cluster.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    scanDnsName String
    The fully qualified domain name (FQDN) for the SCAN IP addresses associated with the VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IPs linked to the VM cluster.
    scanIpIds List<String>
    The list of OCIDs for SCAN IP addresses associated with the VM cluster.
    scanListenerPortTcp Number
    The port number for TCP connections to the single client access name (SCAN) listener. Valid values: 1024–8999, except 2484, 6100, 6200, 7060, 7070, 7085, and 7879. Default: 1521. Changing this will create a new resource.
    shape String
    The hardware model name of the Exadata infrastructure running the VM cluster.
    sshPublicKeys List<String>
    The public key portion of one or more key pairs used for SSH access to the VM cluster. Changing this will create a new resource.
    status String
    The current lifecycle status of the VM cluster.
    statusReason String
    Additional information regarding the current status of the VM cluster.
    storageSizeInGbs Number
    The local node storage allocated to the VM cluster, in gigabytes (GB).
    systemVersion String
    The operating system version of the image chosen for the VM cluster.
    tags Map<String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    The combined set of user-defined and provider-defined tags.
    timeouts Property Map
    timezone String
    The configured time zone of the VM cluster. Changing this will create a new resource.
    vipIds List<String>
    The virtual IP (VIP) addresses assigned to the VM cluster. CRS assigns one VIP per node for failover support.

    Supporting Types

    CloudVmClusterDataCollectionOptions, CloudVmClusterDataCollectionOptionsArgs

    CloudVmClusterIormConfigCach, CloudVmClusterIormConfigCachArgs

    CloudVmClusterIormConfigCachDbPlan, CloudVmClusterIormConfigCachDbPlanArgs

    DbName string
    FlashCacheLimit string
    Share int
    DbName string
    FlashCacheLimit string
    Share int
    dbName String
    flashCacheLimit String
    share Integer
    dbName string
    flashCacheLimit string
    share number
    dbName String
    flashCacheLimit String
    share Number

    CloudVmClusterTimeouts, CloudVmClusterTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import cloud vm cluster using the id. For example:

    $ pulumi import aws:odb/cloudVmCluster:CloudVmCluster example example
    

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

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate