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,
});
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"])
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
	})
}
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,
    });
});
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());
    }
}
resources:
  testHeatWaveCluster:
    type: oci:Mysql:HeatWaveCluster
    name: test_heat_wave_cluster
    properties:
      dbSystemId: ${testDbSystem.id}
      clusterSize: ${heatWaveClusterClusterSize}
      isLakehouseEnabled: ${heatWaveClusterIsLakehouseEnabled}
      shapeName: ${testShape.name}
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 string
- The unique name of the resource.
- args HeatWaveClusterArgs
- 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 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 string
- The unique name of the resource.
- args HeatWaveClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HeatWaveClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
var heatWaveClusterResource = new HeatWaveCluster("heatWaveClusterResource", HeatWaveClusterArgs.builder()
    .clusterSize(0)
    .dbSystemId("string")
    .shapeName("string")
    .isLakehouseEnabled(false)
    .state("string")
    .build());
heat_wave_cluster_resource = oci.mysql.HeatWaveCluster("heatWaveClusterResource",
    cluster_size=0,
    db_system_id="string",
    shape_name="string",
    is_lakehouse_enabled=False,
    state="string")
const heatWaveClusterResource = new oci.mysql.HeatWaveCluster("heatWaveClusterResource", {
    clusterSize: 0,
    dbSystemId: "string",
    shapeName: "string",
    isLakehouseEnabled: false,
    state: "string",
});
type: oci:Mysql:HeatWaveCluster
properties:
    clusterSize: 0
    dbSystemId: string
    isLakehouseEnabled: false
    shapeName: string
    state: string
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 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.
- DbSystem stringId 
- The DB System OCID.
- 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.
- IsLakehouse boolEnabled 
- (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- State string
- (Updatable) The target state for the HeatWave cluster. Could be set to - ACTIVEor- 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 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.
- DbSystem stringId 
- The DB System OCID.
- 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.
- IsLakehouse boolEnabled 
- (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- State string
- (Updatable) The target state for the HeatWave cluster. Could be set to - ACTIVEor- 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 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.
- dbSystem StringId 
- The DB System OCID.
- 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.
- isLakehouse BooleanEnabled 
- (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- state String
- (Updatable) The target state for the HeatWave cluster. Could be set to - ACTIVEor- 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 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.
- dbSystem stringId 
- The DB System OCID.
- 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.
- isLakehouse booleanEnabled 
- (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- state string
- (Updatable) The target state for the HeatWave cluster. Could be set to - ACTIVEor- 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 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_ strid 
- The DB System OCID.
- 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.
- is_lakehouse_ boolenabled 
- (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- state str
- (Updatable) The target state for the HeatWave cluster. Could be set to - ACTIVEor- 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 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.
- dbSystem StringId 
- The DB System OCID.
- 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.
- isLakehouse BooleanEnabled 
- (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- state String
- (Updatable) The target state for the HeatWave cluster. Could be set to - ACTIVEor- 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<HeatWave Cluster Cluster Node> 
- 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 []HeatWave Cluster Cluster Node 
- 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<HeatWave Cluster Cluster Node> 
- 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 HeatWave Cluster Cluster Node[] 
- 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[HeatWave Cluster Cluster Node] 
- 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[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) -> HeatWaveClusterfunc 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
- 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.
- ClusterNodes List<HeatWave Cluster Cluster Node> 
- 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.
- DbSystem stringId 
- The DB System OCID.
- IsLakehouse boolEnabled 
- (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 - ACTIVEor- 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 []HeatWave Cluster Cluster Node Args 
- 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.
- DbSystem stringId 
- The DB System OCID.
- IsLakehouse boolEnabled 
- (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 - ACTIVEor- 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<HeatWave Cluster Cluster Node> 
- 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.
- dbSystem StringId 
- The DB System OCID.
- isLakehouse BooleanEnabled 
- (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 - ACTIVEor- 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 HeatWave Cluster Cluster Node[] 
- 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.
- dbSystem stringId 
- The DB System OCID.
- isLakehouse booleanEnabled 
- (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 - ACTIVEor- 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[HeatWave Cluster Cluster Node Args] 
- 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_ strid 
- The DB System OCID.
- is_lakehouse_ boolenabled 
- (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 - ACTIVEor- 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.
- dbSystem StringId 
- The DB System OCID.
- isLakehouse BooleanEnabled 
- (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 - ACTIVEor- 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 - ACTIVEor- 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 - ACTIVEor- 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 - ACTIVEor- 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 - ACTIVEor- 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 - ACTIVEor- 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 - ACTIVEor- 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"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.