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

oci.Mysql.HeatWaveCluster

Explore with Pulumi AI

This resource provides the HeatWave cluster resource in Oracle Cloud Infrastructure MySQL Database service.

Updates the HeatWave cluster.

Example Usage

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

const testHeatWaveCluster = new oci.mysql.HeatWaveCluster("test_heat_wave_cluster", {
    dbSystemId: testDbSystem.id,
    clusterSize: heatWaveClusterClusterSize,
    isLakehouseEnabled: heatWaveClusterIsLakehouseEnabled,
    shapeName: testShape.name,
});
Copy
import pulumi
import pulumi_oci as oci

test_heat_wave_cluster = oci.mysql.HeatWaveCluster("test_heat_wave_cluster",
    db_system_id=test_db_system["id"],
    cluster_size=heat_wave_cluster_cluster_size,
    is_lakehouse_enabled=heat_wave_cluster_is_lakehouse_enabled,
    shape_name=test_shape["name"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/mysql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mysql.NewHeatWaveCluster(ctx, "test_heat_wave_cluster", &mysql.HeatWaveClusterArgs{
			DbSystemId:         pulumi.Any(testDbSystem.Id),
			ClusterSize:        pulumi.Any(heatWaveClusterClusterSize),
			IsLakehouseEnabled: pulumi.Any(heatWaveClusterIsLakehouseEnabled),
			ShapeName:          pulumi.Any(testShape.Name),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testHeatWaveCluster = new Oci.Mysql.HeatWaveCluster("test_heat_wave_cluster", new()
    {
        DbSystemId = testDbSystem.Id,
        ClusterSize = heatWaveClusterClusterSize,
        IsLakehouseEnabled = heatWaveClusterIsLakehouseEnabled,
        ShapeName = testShape.Name,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Mysql.HeatWaveCluster;
import com.pulumi.oci.Mysql.HeatWaveClusterArgs;
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 testHeatWaveCluster = new HeatWaveCluster("testHeatWaveCluster", HeatWaveClusterArgs.builder()
            .dbSystemId(testDbSystem.id())
            .clusterSize(heatWaveClusterClusterSize)
            .isLakehouseEnabled(heatWaveClusterIsLakehouseEnabled)
            .shapeName(testShape.name())
            .build());

    }
}
Copy
resources:
  testHeatWaveCluster:
    type: oci:Mysql:HeatWaveCluster
    name: test_heat_wave_cluster
    properties:
      dbSystemId: ${testDbSystem.id}
      clusterSize: ${heatWaveClusterClusterSize}
      isLakehouseEnabled: ${heatWaveClusterIsLakehouseEnabled}
      shapeName: ${testShape.name}
Copy

Create HeatWaveCluster Resource

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

Constructor syntax

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

@overload
def HeatWaveCluster(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    cluster_size: Optional[int] = None,
                    db_system_id: Optional[str] = None,
                    shape_name: Optional[str] = None,
                    is_lakehouse_enabled: Optional[bool] = None,
                    state: Optional[str] = None)
func NewHeatWaveCluster(ctx *Context, name string, args HeatWaveClusterArgs, opts ...ResourceOption) (*HeatWaveCluster, error)
public HeatWaveCluster(string name, HeatWaveClusterArgs args, CustomResourceOptions? opts = null)
public HeatWaveCluster(String name, HeatWaveClusterArgs args)
public HeatWaveCluster(String name, HeatWaveClusterArgs args, CustomResourceOptions options)
type: oci:Mysql:HeatWaveCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. HeatWaveClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. HeatWaveClusterArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. HeatWaveClusterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. HeatWaveClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. HeatWaveClusterArgs
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 heatWaveClusterResource = new Oci.Mysql.HeatWaveCluster("heatWaveClusterResource", new()
{
    ClusterSize = 0,
    DbSystemId = "string",
    ShapeName = "string",
    IsLakehouseEnabled = false,
    State = "string",
});
Copy
example, err := Mysql.NewHeatWaveCluster(ctx, "heatWaveClusterResource", &Mysql.HeatWaveClusterArgs{
	ClusterSize:        pulumi.Int(0),
	DbSystemId:         pulumi.String("string"),
	ShapeName:          pulumi.String("string"),
	IsLakehouseEnabled: pulumi.Bool(false),
	State:              pulumi.String("string"),
})
Copy
var heatWaveClusterResource = new HeatWaveCluster("heatWaveClusterResource", HeatWaveClusterArgs.builder()
    .clusterSize(0)
    .dbSystemId("string")
    .shapeName("string")
    .isLakehouseEnabled(false)
    .state("string")
    .build());
Copy
heat_wave_cluster_resource = oci.mysql.HeatWaveCluster("heatWaveClusterResource",
    cluster_size=0,
    db_system_id="string",
    shape_name="string",
    is_lakehouse_enabled=False,
    state="string")
Copy
const heatWaveClusterResource = new oci.mysql.HeatWaveCluster("heatWaveClusterResource", {
    clusterSize: 0,
    dbSystemId: "string",
    shapeName: "string",
    isLakehouseEnabled: false,
    state: "string",
});
Copy
type: oci:Mysql:HeatWaveCluster
properties:
    clusterSize: 0
    dbSystemId: string
    isLakehouseEnabled: false
    shapeName: string
    state: string
Copy

HeatWaveCluster 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 HeatWaveCluster resource accepts the following input properties:

ClusterSize This property is required. int
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
DbSystemId
This property is required.
Changes to this property will trigger replacement.
string
The DB System OCID.
ShapeName This property is required. string
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
IsLakehouseEnabled bool
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
State string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

ClusterSize This property is required. int
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
DbSystemId
This property is required.
Changes to this property will trigger replacement.
string
The DB System OCID.
ShapeName This property is required. string
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
IsLakehouseEnabled bool
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
State string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

clusterSize This property is required. Integer
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
dbSystemId
This property is required.
Changes to this property will trigger replacement.
String
The DB System OCID.
shapeName This property is required. String
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
isLakehouseEnabled Boolean
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
state String

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

clusterSize This property is required. number
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
dbSystemId
This property is required.
Changes to this property will trigger replacement.
string
The DB System OCID.
shapeName This property is required. string
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
isLakehouseEnabled boolean
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
state string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

cluster_size This property is required. int
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
db_system_id
This property is required.
Changes to this property will trigger replacement.
str
The DB System OCID.
shape_name This property is required. str
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
is_lakehouse_enabled bool
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
state str

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

clusterSize This property is required. Number
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
dbSystemId
This property is required.
Changes to this property will trigger replacement.
String
The DB System OCID.
shapeName This property is required. String
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
isLakehouseEnabled Boolean
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
state String

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

Outputs

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

ClusterNodes List<HeatWaveClusterClusterNode>
A HeatWave node is a compute host that is part of a HeatWave cluster.
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
Additional information about the current lifecycleState.
TimeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
TimeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
ClusterNodes []HeatWaveClusterClusterNode
A HeatWave node is a compute host that is part of a HeatWave cluster.
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
Additional information about the current lifecycleState.
TimeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
TimeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
clusterNodes List<HeatWaveClusterClusterNode>
A HeatWave node is a compute host that is part of a HeatWave cluster.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
Additional information about the current lifecycleState.
timeCreated String
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated String
The time the HeatWave cluster was last updated, as described by RFC 3339.
clusterNodes HeatWaveClusterClusterNode[]
A HeatWave node is a compute host that is part of a HeatWave cluster.
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
Additional information about the current lifecycleState.
timeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
cluster_nodes Sequence[mysql.HeatWaveClusterClusterNode]
A HeatWave node is a compute host that is part of a HeatWave cluster.
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
Additional information about the current lifecycleState.
time_created str
The date and time the HeatWave cluster was created, as described by RFC 3339.
time_updated str
The time the HeatWave cluster was last updated, as described by RFC 3339.
clusterNodes List<Property Map>
A HeatWave node is a compute host that is part of a HeatWave cluster.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
Additional information about the current lifecycleState.
timeCreated String
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated String
The time the HeatWave cluster was last updated, as described by RFC 3339.

Look up Existing HeatWaveCluster Resource

Get an existing HeatWaveCluster 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?: HeatWaveClusterState, opts?: CustomResourceOptions): HeatWaveCluster
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cluster_nodes: Optional[Sequence[_mysql.HeatWaveClusterClusterNodeArgs]] = None,
        cluster_size: Optional[int] = None,
        db_system_id: Optional[str] = None,
        is_lakehouse_enabled: Optional[bool] = None,
        lifecycle_details: Optional[str] = None,
        shape_name: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> HeatWaveCluster
func GetHeatWaveCluster(ctx *Context, name string, id IDInput, state *HeatWaveClusterState, opts ...ResourceOption) (*HeatWaveCluster, error)
public static HeatWaveCluster Get(string name, Input<string> id, HeatWaveClusterState? state, CustomResourceOptions? opts = null)
public static HeatWaveCluster get(String name, Output<String> id, HeatWaveClusterState state, CustomResourceOptions options)
resources:  _:    type: oci:Mysql:HeatWaveCluster    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ClusterNodes List<HeatWaveClusterClusterNode>
A HeatWave node is a compute host that is part of a HeatWave cluster.
ClusterSize int
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
DbSystemId Changes to this property will trigger replacement. string
The DB System OCID.
IsLakehouseEnabled bool
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
LifecycleDetails string
Additional information about the current lifecycleState.
ShapeName string
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
State string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

TimeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
TimeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
ClusterNodes []HeatWaveClusterClusterNodeArgs
A HeatWave node is a compute host that is part of a HeatWave cluster.
ClusterSize int
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
DbSystemId Changes to this property will trigger replacement. string
The DB System OCID.
IsLakehouseEnabled bool
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
LifecycleDetails string
Additional information about the current lifecycleState.
ShapeName string
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
State string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

TimeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
TimeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
clusterNodes List<HeatWaveClusterClusterNode>
A HeatWave node is a compute host that is part of a HeatWave cluster.
clusterSize Integer
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
dbSystemId Changes to this property will trigger replacement. String
The DB System OCID.
isLakehouseEnabled Boolean
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
lifecycleDetails String
Additional information about the current lifecycleState.
shapeName String
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
state String

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

timeCreated String
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated String
The time the HeatWave cluster was last updated, as described by RFC 3339.
clusterNodes HeatWaveClusterClusterNode[]
A HeatWave node is a compute host that is part of a HeatWave cluster.
clusterSize number
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
dbSystemId Changes to this property will trigger replacement. string
The DB System OCID.
isLakehouseEnabled boolean
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
lifecycleDetails string
Additional information about the current lifecycleState.
shapeName string
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
state string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

timeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
cluster_nodes Sequence[mysql.HeatWaveClusterClusterNodeArgs]
A HeatWave node is a compute host that is part of a HeatWave cluster.
cluster_size int
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
db_system_id Changes to this property will trigger replacement. str
The DB System OCID.
is_lakehouse_enabled bool
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
lifecycle_details str
Additional information about the current lifecycleState.
shape_name str
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
state str

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

time_created str
The date and time the HeatWave cluster was created, as described by RFC 3339.
time_updated str
The time the HeatWave cluster was last updated, as described by RFC 3339.
clusterNodes List<Property Map>
A HeatWave node is a compute host that is part of a HeatWave cluster.
clusterSize Number
(Updatable) A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
dbSystemId Changes to this property will trigger replacement. String
The DB System OCID.
isLakehouseEnabled Boolean
(Updatable) Enable/disable Lakehouse for the HeatWave cluster.
lifecycleDetails String
Additional information about the current lifecycleState.
shapeName String
(Updatable) A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.
state String

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

timeCreated String
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated String
The time the HeatWave cluster was last updated, as described by RFC 3339.

Supporting Types

HeatWaveClusterClusterNode
, HeatWaveClusterClusterNodeArgs

NodeId string
The ID of the node within MySQL HeatWave cluster.
State string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

TimeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
TimeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
NodeId string
The ID of the node within MySQL HeatWave cluster.
State string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

TimeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
TimeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
nodeId String
The ID of the node within MySQL HeatWave cluster.
state String

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

timeCreated String
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated String
The time the HeatWave cluster was last updated, as described by RFC 3339.
nodeId string
The ID of the node within MySQL HeatWave cluster.
state string

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

timeCreated string
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated string
The time the HeatWave cluster was last updated, as described by RFC 3339.
node_id str
The ID of the node within MySQL HeatWave cluster.
state str

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

time_created str
The date and time the HeatWave cluster was created, as described by RFC 3339.
time_updated str
The time the HeatWave cluster was last updated, as described by RFC 3339.
nodeId String
The ID of the node within MySQL HeatWave cluster.
state String

(Updatable) The target state for the HeatWave cluster. Could be set to ACTIVE or INACTIVE.

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

timeCreated String
The date and time the HeatWave cluster was created, as described by RFC 3339.
timeUpdated String
The time the HeatWave cluster was last updated, as described by RFC 3339.

Import

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

$ pulumi import oci:Mysql/heatWaveCluster:HeatWaveCluster test_heat_wave_cluster "dbSystem/{dbSystemId}/heatWaveCluster"
Copy

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

Package Details

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