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/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
The HeatWaveCluster resource accepts the following input properties:
- 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 stringId - The DB System OCID.
- Shape
Name 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.
- Is
Lakehouse boolEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- State string
(Updatable) The target state for the HeatWave cluster. Could be set to
ACTIVE
orINACTIVE
.** 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 stringId - The DB System OCID.
- Shape
Name 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.
- Is
Lakehouse boolEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- State string
(Updatable) The target state for the HeatWave cluster. Could be set to
ACTIVE
orINACTIVE
.** 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 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.
- db
System StringId - The DB System OCID.
- shape
Name 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.
- is
Lakehouse BooleanEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- state String
(Updatable) The target state for the HeatWave cluster. Could be set to
ACTIVE
orINACTIVE
.** 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 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.
- db
System stringId - The DB System OCID.
- shape
Name 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.
- is
Lakehouse booleanEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- state string
(Updatable) The target state for the HeatWave cluster. Could be set to
ACTIVE
orINACTIVE
.** 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
ACTIVE
orINACTIVE
.** 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 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.
- db
System StringId - The DB System OCID.
- shape
Name 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.
- is
Lakehouse BooleanEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- state String
(Updatable) The target state for the HeatWave cluster. Could be set to
ACTIVE
orINACTIVE
.** 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:
- Cluster
Nodes 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.
- Lifecycle
Details string - Additional information about the current lifecycleState.
- Time
Created string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- Time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- Cluster
Nodes []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.
- Lifecycle
Details string - Additional information about the current lifecycleState.
- Time
Created string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- Time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- cluster
Nodes 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.
- lifecycle
Details String - Additional information about the current lifecycleState.
- time
Created String - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated String - The time the HeatWave cluster was last updated, as described by RFC 3339.
- cluster
Nodes 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.
- lifecycle
Details string - Additional information about the current lifecycleState.
- time
Created string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- cluster_
nodes Sequence[mysql.Heat Wave 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.
- cluster
Nodes 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.
- lifecycle
Details String - Additional information about the current lifecycleState.
- time
Created String - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cluster
Nodes List<HeatWave Cluster Cluster Node> - 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 stringId - The DB System OCID.
- Is
Lakehouse boolEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- Lifecycle
Details string - Additional information about the current lifecycleState.
- Shape
Name 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
orINACTIVE
.** 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 string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- Time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- Cluster
Nodes []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 stringId - The DB System OCID.
- Is
Lakehouse boolEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- Lifecycle
Details string - Additional information about the current lifecycleState.
- Shape
Name 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
orINACTIVE
.** 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 string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- Time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- cluster
Nodes List<HeatWave Cluster Cluster Node> - A HeatWave node is a compute host that is part of a HeatWave cluster.
- cluster
Size 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.
- db
System StringId - The DB System OCID.
- is
Lakehouse BooleanEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- lifecycle
Details String - Additional information about the current lifecycleState.
- shape
Name 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
orINACTIVE
.** 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 String - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated String - The time the HeatWave cluster was last updated, as described by RFC 3339.
- cluster
Nodes HeatWave Cluster Cluster Node[] - A HeatWave node is a compute host that is part of a HeatWave cluster.
- cluster
Size 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.
- db
System stringId - The DB System OCID.
- is
Lakehouse booleanEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- lifecycle
Details string - Additional information about the current lifecycleState.
- shape
Name 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
orINACTIVE
.** 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 string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- cluster_
nodes Sequence[mysql.Heat Wave 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
ACTIVE
orINACTIVE
.** 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.
- cluster
Nodes List<Property Map> - A HeatWave node is a compute host that is part of a HeatWave cluster.
- cluster
Size 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.
- db
System StringId - The DB System OCID.
- is
Lakehouse BooleanEnabled - (Updatable) Enable/disable Lakehouse for the HeatWave cluster.
- lifecycle
Details String - Additional information about the current lifecycleState.
- shape
Name 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
orINACTIVE
.** 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 String - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated String - The time the HeatWave cluster was last updated, as described by RFC 3339.
Supporting Types
HeatWaveClusterClusterNode, HeatWaveClusterClusterNodeArgs
- Node
Id 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
orINACTIVE
.** 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 string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- Time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- Node
Id 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
orINACTIVE
.** 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 string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- Time
Updated string - The time the HeatWave cluster was last updated, as described by RFC 3339.
- node
Id 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
orINACTIVE
.** 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 String - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated String - The time the HeatWave cluster was last updated, as described by RFC 3339.
- node
Id 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
orINACTIVE
.** 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 string - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated 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
orINACTIVE
.** 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.
- node
Id 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
orINACTIVE
.** 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 String - The date and time the HeatWave cluster was created, as described by RFC 3339.
- time
Updated 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
oci
Terraform Provider.