oci.Database.VmClusterRemoveVirtualMachine
Explore with Pulumi AI
This resource provides the Vm Cluster Remove Virtual Machine resource in Oracle Cloud Infrastructure Database service.
Remove Virtual Machines from the VM cluster. Applies to Exadata Cloud@Customer instances only.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testVmClusterRemoveVirtualMachine = new oci.database.VmClusterRemoveVirtualMachine("test_vm_cluster_remove_virtual_machine", {
    dbServers: [{
        dbServerId: testDbServer.id,
    }],
    vmClusterId: testVmCluster.id,
});
import pulumi
import pulumi_oci as oci
test_vm_cluster_remove_virtual_machine = oci.database.VmClusterRemoveVirtualMachine("test_vm_cluster_remove_virtual_machine",
    db_servers=[{
        "db_server_id": test_db_server["id"],
    }],
    vm_cluster_id=test_vm_cluster["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewVmClusterRemoveVirtualMachine(ctx, "test_vm_cluster_remove_virtual_machine", &database.VmClusterRemoveVirtualMachineArgs{
			DbServers: database.VmClusterRemoveVirtualMachineDbServerArray{
				&database.VmClusterRemoveVirtualMachineDbServerArgs{
					DbServerId: pulumi.Any(testDbServer.Id),
				},
			},
			VmClusterId: pulumi.Any(testVmCluster.Id),
		})
		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 testVmClusterRemoveVirtualMachine = new Oci.Database.VmClusterRemoveVirtualMachine("test_vm_cluster_remove_virtual_machine", new()
    {
        DbServers = new[]
        {
            new Oci.Database.Inputs.VmClusterRemoveVirtualMachineDbServerArgs
            {
                DbServerId = testDbServer.Id,
            },
        },
        VmClusterId = testVmCluster.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.VmClusterRemoveVirtualMachine;
import com.pulumi.oci.Database.VmClusterRemoveVirtualMachineArgs;
import com.pulumi.oci.Database.inputs.VmClusterRemoveVirtualMachineDbServerArgs;
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 testVmClusterRemoveVirtualMachine = new VmClusterRemoveVirtualMachine("testVmClusterRemoveVirtualMachine", VmClusterRemoveVirtualMachineArgs.builder()
            .dbServers(VmClusterRemoveVirtualMachineDbServerArgs.builder()
                .dbServerId(testDbServer.id())
                .build())
            .vmClusterId(testVmCluster.id())
            .build());
    }
}
resources:
  testVmClusterRemoveVirtualMachine:
    type: oci:Database:VmClusterRemoveVirtualMachine
    name: test_vm_cluster_remove_virtual_machine
    properties:
      dbServers:
        - dbServerId: ${testDbServer.id}
      vmClusterId: ${testVmCluster.id}
Create VmClusterRemoveVirtualMachine Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VmClusterRemoveVirtualMachine(name: string, args: VmClusterRemoveVirtualMachineArgs, opts?: CustomResourceOptions);@overload
def VmClusterRemoveVirtualMachine(resource_name: str,
                                  args: VmClusterRemoveVirtualMachineArgs,
                                  opts: Optional[ResourceOptions] = None)
@overload
def VmClusterRemoveVirtualMachine(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  db_servers: Optional[Sequence[VmClusterRemoveVirtualMachineDbServerArgs]] = None,
                                  vm_cluster_id: Optional[str] = None)func NewVmClusterRemoveVirtualMachine(ctx *Context, name string, args VmClusterRemoveVirtualMachineArgs, opts ...ResourceOption) (*VmClusterRemoveVirtualMachine, error)public VmClusterRemoveVirtualMachine(string name, VmClusterRemoveVirtualMachineArgs args, CustomResourceOptions? opts = null)
public VmClusterRemoveVirtualMachine(String name, VmClusterRemoveVirtualMachineArgs args)
public VmClusterRemoveVirtualMachine(String name, VmClusterRemoveVirtualMachineArgs args, CustomResourceOptions options)
type: oci:Database:VmClusterRemoveVirtualMachine
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 VmClusterRemoveVirtualMachineArgs
- 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 VmClusterRemoveVirtualMachineArgs
- 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 VmClusterRemoveVirtualMachineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VmClusterRemoveVirtualMachineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VmClusterRemoveVirtualMachineArgs
- 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 vmClusterRemoveVirtualMachineResource = new Oci.Database.VmClusterRemoveVirtualMachine("vmClusterRemoveVirtualMachineResource", new()
{
    DbServers = new[]
    {
        new Oci.Database.Inputs.VmClusterRemoveVirtualMachineDbServerArgs
        {
            DbServerId = "string",
        },
    },
    VmClusterId = "string",
});
example, err := database.NewVmClusterRemoveVirtualMachine(ctx, "vmClusterRemoveVirtualMachineResource", &database.VmClusterRemoveVirtualMachineArgs{
	DbServers: database.VmClusterRemoveVirtualMachineDbServerArray{
		&database.VmClusterRemoveVirtualMachineDbServerArgs{
			DbServerId: pulumi.String("string"),
		},
	},
	VmClusterId: pulumi.String("string"),
})
var vmClusterRemoveVirtualMachineResource = new VmClusterRemoveVirtualMachine("vmClusterRemoveVirtualMachineResource", VmClusterRemoveVirtualMachineArgs.builder()
    .dbServers(VmClusterRemoveVirtualMachineDbServerArgs.builder()
        .dbServerId("string")
        .build())
    .vmClusterId("string")
    .build());
vm_cluster_remove_virtual_machine_resource = oci.database.VmClusterRemoveVirtualMachine("vmClusterRemoveVirtualMachineResource",
    db_servers=[{
        "db_server_id": "string",
    }],
    vm_cluster_id="string")
const vmClusterRemoveVirtualMachineResource = new oci.database.VmClusterRemoveVirtualMachine("vmClusterRemoveVirtualMachineResource", {
    dbServers: [{
        dbServerId: "string",
    }],
    vmClusterId: "string",
});
type: oci:Database:VmClusterRemoveVirtualMachine
properties:
    dbServers:
        - dbServerId: string
    vmClusterId: string
VmClusterRemoveVirtualMachine 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 VmClusterRemoveVirtualMachine resource accepts the following input properties:
- DbServers List<VmCluster Remove Virtual Machine Db Server> 
- The list of Exacc DB servers for the cluster to be removed.
- VmCluster stringId 
- The VM cluster OCID. - ** 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 
- DbServers []VmCluster Remove Virtual Machine Db Server Args 
- The list of Exacc DB servers for the cluster to be removed.
- VmCluster stringId 
- The VM cluster OCID. - ** 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 
- dbServers List<VmCluster Remove Virtual Machine Db Server> 
- The list of Exacc DB servers for the cluster to be removed.
- vmCluster StringId 
- The VM cluster OCID. - ** 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 
- dbServers VmCluster Remove Virtual Machine Db Server[] 
- The list of Exacc DB servers for the cluster to be removed.
- vmCluster stringId 
- The VM cluster OCID. - ** 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 
- db_servers Sequence[VmCluster Remove Virtual Machine Db Server Args] 
- The list of Exacc DB servers for the cluster to be removed.
- vm_cluster_ strid 
- The VM cluster OCID. - ** 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 
- dbServers List<Property Map>
- The list of Exacc DB servers for the cluster to be removed.
- vmCluster StringId 
- The VM cluster OCID. - ** 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 VmClusterRemoveVirtualMachine resource produces the following output properties:
- AvailabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- CloudAutomation List<VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail> 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- CompartmentId string
- The OCID of the compartment.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpusEnabled int
- The number of enabled CPU cores.
- DataCollection List<VmOptions Cluster Remove Virtual Machine Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage doubleSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem List<VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail> 
- Details of the file system configuration of the VM cluster.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- IsLocal boolBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- IsSparse boolDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- SshPublic List<string>Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- SystemVersion string
- Operating system version of the image.
- TimeCreated string
- The date and time that the VM cluster was created.
- TimeZone string
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- AvailabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- CloudAutomation []VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- CompartmentId string
- The OCID of the compartment.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpusEnabled int
- The number of enabled CPU cores.
- DataCollection []VmOptions Cluster Remove Virtual Machine Data Collection Option 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage float64Size In Tbs 
- Size, in terabytes, of the DATA disk group.
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem []VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail 
- Details of the file system configuration of the VM cluster.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- IsLocal boolBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- IsSparse boolDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- SshPublic []stringKeys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- SystemVersion string
- Operating system version of the image.
- TimeCreated string
- The date and time that the VM cluster was created.
- TimeZone string
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availabilityDomain String
- The name of the availability domain that the VM cluster is located in.
- cloudAutomation List<VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail> 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId String
- The OCID of the compartment.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled Integer
- The number of enabled CPU cores.
- dataCollection List<VmOptions Cluster Remove Virtual Machine Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage DoubleSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- dbNode IntegerStorage Size In Gbs 
- The local node storage allocated in GBs.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail> 
- Details of the file system configuration of the VM cluster.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- isLocal BooleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse BooleanDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- memorySize IntegerIn Gbs 
- The memory allocated in GBs.
- shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- systemVersion String
- Operating system version of the image.
- timeCreated String
- The date and time that the VM cluster was created.
- timeZone String
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- cloudAutomation VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail[] 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId string
- The OCID of the compartment.
- computeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled number
- The number of enabled CPU cores.
- dataCollection VmOptions Cluster Remove Virtual Machine Data Collection Option[] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage numberSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- dbNode numberStorage Size In Gbs 
- The local node storage allocated in GBs.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName string
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- exascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail[] 
- Details of the file system configuration of the VM cluster.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- isLocal booleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse booleanDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- lastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel string
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- memorySize numberIn Gbs 
- The memory allocated in GBs.
- shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- sshPublic string[]Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state string
- The current state of the VM cluster.
- storageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- systemVersion string
- Operating system version of the image.
- timeCreated string
- The date and time that the VM cluster was created.
- timeZone string
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availability_domain str
- The name of the availability domain that the VM cluster is located in.
- cloud_automation_ Sequence[Vmupdate_ details Cluster Remove Virtual Machine Cloud Automation Update Detail] 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartment_id str
- The OCID of the compartment.
- compute_model str
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpus_enabled int
- The number of enabled CPU cores.
- data_collection_ Sequence[Vmoptions Cluster Remove Virtual Machine Data Collection Option] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_storage_ floatsize_ in_ tbs 
- Size, in terabytes, of the DATA disk group.
- db_node_ intstorage_ size_ in_ gbs 
- The local node storage allocated in GBs.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_name str
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata_infrastructure_ strid 
- The OCID of the Exadata infrastructure.
- exascale_db_ strstorage_ vault_ id 
- The OCID of the Exadata Database Storage Vault.
- file_system_ Sequence[Vmconfiguration_ details Cluster Remove Virtual Machine File System Configuration Detail] 
- Details of the file system configuration of the VM cluster.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- gi_version str
- The Oracle Grid Infrastructure software version for the VM cluster.
- id str
- The provider-assigned unique ID for this managed resource.
- is_local_ boolbackup_ enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is_sparse_ booldiskgroup_ enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last_patch_ strhistory_ entry_ id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_model str
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle_details str
- Additional information about the current lifecycle state.
- memory_size_ intin_ gbs 
- The memory allocated in GBs.
- shape str
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh_public_ Sequence[str]keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state str
- The current state of the VM cluster.
- storage_management_ strtype 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- system_version str
- Operating system version of the image.
- time_created str
- The date and time that the VM cluster was created.
- time_zone str
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm_cluster_ strnetwork_ id 
- The OCID of the VM cluster network.
- vm_cluster_ strtype 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availabilityDomain String
- The name of the availability domain that the VM cluster is located in.
- cloudAutomation List<Property Map>Update Details 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId String
- The OCID of the compartment.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled Number
- The number of enabled CPU cores.
- dataCollection List<Property Map>Options 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage NumberSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- dbNode NumberStorage Size In Gbs 
- The local node storage allocated in GBs.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<Property Map>Configuration Details 
- Details of the file system configuration of the VM cluster.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- isLocal BooleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse BooleanDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- memorySize NumberIn Gbs 
- The memory allocated in GBs.
- shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- systemVersion String
- Operating system version of the image.
- timeCreated String
- The date and time that the VM cluster was created.
- timeZone String
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
Look up Existing VmClusterRemoveVirtualMachine Resource
Get an existing VmClusterRemoveVirtualMachine 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?: VmClusterRemoveVirtualMachineState, opts?: CustomResourceOptions): VmClusterRemoveVirtualMachine@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        availability_domain: Optional[str] = None,
        cloud_automation_update_details: Optional[Sequence[VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailArgs]] = None,
        compartment_id: Optional[str] = None,
        compute_model: Optional[str] = None,
        cpus_enabled: Optional[int] = None,
        data_collection_options: Optional[Sequence[VmClusterRemoveVirtualMachineDataCollectionOptionArgs]] = None,
        data_storage_size_in_tbs: Optional[float] = None,
        db_node_storage_size_in_gbs: Optional[int] = None,
        db_servers: Optional[Sequence[VmClusterRemoveVirtualMachineDbServerArgs]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        exadata_infrastructure_id: Optional[str] = None,
        exascale_db_storage_vault_id: Optional[str] = None,
        file_system_configuration_details: Optional[Sequence[VmClusterRemoveVirtualMachineFileSystemConfigurationDetailArgs]] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        gi_version: Optional[str] = None,
        is_local_backup_enabled: Optional[bool] = None,
        is_sparse_diskgroup_enabled: Optional[bool] = None,
        last_patch_history_entry_id: Optional[str] = None,
        license_model: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        memory_size_in_gbs: Optional[int] = None,
        shape: Optional[str] = None,
        ssh_public_keys: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        storage_management_type: Optional[str] = None,
        system_version: Optional[str] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None,
        vm_cluster_id: Optional[str] = None,
        vm_cluster_network_id: Optional[str] = None,
        vm_cluster_type: Optional[str] = None) -> VmClusterRemoveVirtualMachinefunc GetVmClusterRemoveVirtualMachine(ctx *Context, name string, id IDInput, state *VmClusterRemoveVirtualMachineState, opts ...ResourceOption) (*VmClusterRemoveVirtualMachine, error)public static VmClusterRemoveVirtualMachine Get(string name, Input<string> id, VmClusterRemoveVirtualMachineState? state, CustomResourceOptions? opts = null)public static VmClusterRemoveVirtualMachine get(String name, Output<String> id, VmClusterRemoveVirtualMachineState state, CustomResourceOptions options)resources:  _:    type: oci:Database:VmClusterRemoveVirtualMachine    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.
- AvailabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- CloudAutomation List<VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail> 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- CompartmentId string
- The OCID of the compartment.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpusEnabled int
- The number of enabled CPU cores.
- DataCollection List<VmOptions Cluster Remove Virtual Machine Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage doubleSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- DbServers List<VmCluster Remove Virtual Machine Db Server> 
- The list of Exacc DB servers for the cluster to be removed.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem List<VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail> 
- Details of the file system configuration of the VM cluster.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- IsLocal boolBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- IsSparse boolDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- SshPublic List<string>Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- SystemVersion string
- Operating system version of the image.
- TimeCreated string
- The date and time that the VM cluster was created.
- TimeZone string
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- VmCluster stringId 
- The VM cluster OCID. - ** 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 
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- AvailabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- CloudAutomation []VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail Args 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- CompartmentId string
- The OCID of the compartment.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpusEnabled int
- The number of enabled CPU cores.
- DataCollection []VmOptions Cluster Remove Virtual Machine Data Collection Option Args 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage float64Size In Tbs 
- Size, in terabytes, of the DATA disk group.
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- DbServers []VmCluster Remove Virtual Machine Db Server Args 
- The list of Exacc DB servers for the cluster to be removed.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem []VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail Args 
- Details of the file system configuration of the VM cluster.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- IsLocal boolBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- IsSparse boolDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- SshPublic []stringKeys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- SystemVersion string
- Operating system version of the image.
- TimeCreated string
- The date and time that the VM cluster was created.
- TimeZone string
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- VmCluster stringId 
- The VM cluster OCID. - ** 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 
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availabilityDomain String
- The name of the availability domain that the VM cluster is located in.
- cloudAutomation List<VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail> 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId String
- The OCID of the compartment.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled Integer
- The number of enabled CPU cores.
- dataCollection List<VmOptions Cluster Remove Virtual Machine Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage DoubleSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- dbNode IntegerStorage Size In Gbs 
- The local node storage allocated in GBs.
- dbServers List<VmCluster Remove Virtual Machine Db Server> 
- The list of Exacc DB servers for the cluster to be removed.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail> 
- Details of the file system configuration of the VM cluster.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- isLocal BooleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse BooleanDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- memorySize IntegerIn Gbs 
- The memory allocated in GBs.
- shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- systemVersion String
- Operating system version of the image.
- timeCreated String
- The date and time that the VM cluster was created.
- timeZone String
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vmCluster StringId 
- The VM cluster OCID. - ** 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 
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- cloudAutomation VmUpdate Details Cluster Remove Virtual Machine Cloud Automation Update Detail[] 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId string
- The OCID of the compartment.
- computeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled number
- The number of enabled CPU cores.
- dataCollection VmOptions Cluster Remove Virtual Machine Data Collection Option[] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage numberSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- dbNode numberStorage Size In Gbs 
- The local node storage allocated in GBs.
- dbServers VmCluster Remove Virtual Machine Db Server[] 
- The list of Exacc DB servers for the cluster to be removed.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName string
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- exascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem VmConfiguration Details Cluster Remove Virtual Machine File System Configuration Detail[] 
- Details of the file system configuration of the VM cluster.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- isLocal booleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse booleanDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- lastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel string
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- memorySize numberIn Gbs 
- The memory allocated in GBs.
- shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- sshPublic string[]Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state string
- The current state of the VM cluster.
- storageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- systemVersion string
- Operating system version of the image.
- timeCreated string
- The date and time that the VM cluster was created.
- timeZone string
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vmCluster stringId 
- The VM cluster OCID. - ** 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 
- vmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availability_domain str
- The name of the availability domain that the VM cluster is located in.
- cloud_automation_ Sequence[Vmupdate_ details Cluster Remove Virtual Machine Cloud Automation Update Detail Args] 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartment_id str
- The OCID of the compartment.
- compute_model str
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpus_enabled int
- The number of enabled CPU cores.
- data_collection_ Sequence[Vmoptions Cluster Remove Virtual Machine Data Collection Option Args] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_storage_ floatsize_ in_ tbs 
- Size, in terabytes, of the DATA disk group.
- db_node_ intstorage_ size_ in_ gbs 
- The local node storage allocated in GBs.
- db_servers Sequence[VmCluster Remove Virtual Machine Db Server Args] 
- The list of Exacc DB servers for the cluster to be removed.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_name str
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata_infrastructure_ strid 
- The OCID of the Exadata infrastructure.
- exascale_db_ strstorage_ vault_ id 
- The OCID of the Exadata Database Storage Vault.
- file_system_ Sequence[Vmconfiguration_ details Cluster Remove Virtual Machine File System Configuration Detail Args] 
- Details of the file system configuration of the VM cluster.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- gi_version str
- The Oracle Grid Infrastructure software version for the VM cluster.
- is_local_ boolbackup_ enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is_sparse_ booldiskgroup_ enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last_patch_ strhistory_ entry_ id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_model str
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle_details str
- Additional information about the current lifecycle state.
- memory_size_ intin_ gbs 
- The memory allocated in GBs.
- shape str
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh_public_ Sequence[str]keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state str
- The current state of the VM cluster.
- storage_management_ strtype 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- system_version str
- Operating system version of the image.
- time_created str
- The date and time that the VM cluster was created.
- time_zone str
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm_cluster_ strid 
- The VM cluster OCID. - ** 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 
- vm_cluster_ strnetwork_ id 
- The OCID of the VM cluster network.
- vm_cluster_ strtype 
- The vmcluster type for the VM cluster/Cloud VM cluster.
- availabilityDomain String
- The name of the availability domain that the VM cluster is located in.
- cloudAutomation List<Property Map>Update Details 
- Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId String
- The OCID of the compartment.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled Number
- The number of enabled CPU cores.
- dataCollection List<Property Map>Options 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage NumberSize In Tbs 
- Size, in terabytes, of the DATA disk group.
- dbNode NumberStorage Size In Gbs 
- The local node storage allocated in GBs.
- dbServers List<Property Map>
- The list of Exacc DB servers for the cluster to be removed.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<Property Map>Configuration Details 
- Details of the file system configuration of the VM cluster.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- isLocal BooleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse BooleanDiskgroup Enabled 
- If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- memorySize NumberIn Gbs 
- The memory allocated in GBs.
- shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- systemVersion String
- Operating system version of the image.
- timeCreated String
- The date and time that the VM cluster was created.
- timeZone String
- The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vmCluster StringId 
- The VM cluster OCID. - ** 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 
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster.
Supporting Types
VmClusterRemoveVirtualMachineCloudAutomationUpdateDetail, VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailArgs                  
- ApplyUpdate List<VmTime Preferences Cluster Remove Virtual Machine Cloud Automation Update Detail Apply Update Time Preference> 
- Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- FreezePeriods List<VmCluster Remove Virtual Machine Cloud Automation Update Detail Freeze Period> 
- Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- IsEarly boolAdoption Enabled 
- Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- IsFreeze boolPeriod Enabled 
- Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- ApplyUpdate []VmTime Preferences Cluster Remove Virtual Machine Cloud Automation Update Detail Apply Update Time Preference 
- Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- FreezePeriods []VmCluster Remove Virtual Machine Cloud Automation Update Detail Freeze Period 
- Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- IsEarly boolAdoption Enabled 
- Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- IsFreeze boolPeriod Enabled 
- Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- applyUpdate List<VmTime Preferences Cluster Remove Virtual Machine Cloud Automation Update Detail Apply Update Time Preference> 
- Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freezePeriods List<VmCluster Remove Virtual Machine Cloud Automation Update Detail Freeze Period> 
- Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- isEarly BooleanAdoption Enabled 
- Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- isFreeze BooleanPeriod Enabled 
- Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- applyUpdate VmTime Preferences Cluster Remove Virtual Machine Cloud Automation Update Detail Apply Update Time Preference[] 
- Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freezePeriods VmCluster Remove Virtual Machine Cloud Automation Update Detail Freeze Period[] 
- Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- isEarly booleanAdoption Enabled 
- Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- isFreeze booleanPeriod Enabled 
- Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- apply_update_ Sequence[Vmtime_ preferences Cluster Remove Virtual Machine Cloud Automation Update Detail Apply Update Time Preference] 
- Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freeze_periods Sequence[VmCluster Remove Virtual Machine Cloud Automation Update Detail Freeze Period] 
- Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- is_early_ booladoption_ enabled 
- Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- is_freeze_ boolperiod_ enabled 
- Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- applyUpdate List<Property Map>Time Preferences 
- Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freezePeriods List<Property Map>
- Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- isEarly BooleanAdoption Enabled 
- Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- isFreeze BooleanPeriod Enabled 
- Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreference, VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs                          
- ApplyUpdate stringPreferred End Time 
- End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- ApplyUpdate stringPreferred Start Time 
- Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- ApplyUpdate stringPreferred End Time 
- End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- ApplyUpdate stringPreferred Start Time 
- Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- applyUpdate StringPreferred End Time 
- End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- applyUpdate StringPreferred Start Time 
- Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- applyUpdate stringPreferred End Time 
- End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- applyUpdate stringPreferred Start Time 
- Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- apply_update_ strpreferred_ end_ time 
- End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- apply_update_ strpreferred_ start_ time 
- Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- applyUpdate StringPreferred End Time 
- End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- applyUpdate StringPreferred Start Time 
- Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriod, VmClusterRemoveVirtualMachineCloudAutomationUpdateDetailFreezePeriodArgs                      
- FreezePeriod stringEnd Time 
- End time of the freeze period cycle.
- FreezePeriod stringStart Time 
- Start time of the freeze period cycle.
- FreezePeriod stringEnd Time 
- End time of the freeze period cycle.
- FreezePeriod stringStart Time 
- Start time of the freeze period cycle.
- freezePeriod StringEnd Time 
- End time of the freeze period cycle.
- freezePeriod StringStart Time 
- Start time of the freeze period cycle.
- freezePeriod stringEnd Time 
- End time of the freeze period cycle.
- freezePeriod stringStart Time 
- Start time of the freeze period cycle.
- freeze_period_ strend_ time 
- End time of the freeze period cycle.
- freeze_period_ strstart_ time 
- Start time of the freeze period cycle.
- freezePeriod StringEnd Time 
- End time of the freeze period cycle.
- freezePeriod StringStart Time 
- Start time of the freeze period cycle.
VmClusterRemoveVirtualMachineDataCollectionOption, VmClusterRemoveVirtualMachineDataCollectionOptionArgs                
- IsDiagnostics boolEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- IsDiagnostics boolEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics booleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth booleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident booleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- is_diagnostics_ boolevents_ enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- is_health_ boolmonitoring_ enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- is_incident_ boollogs_ enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
VmClusterRemoveVirtualMachineDbServer, VmClusterRemoveVirtualMachineDbServerArgs              
- DbServer stringId 
- The OCID of Exacc Db server.
- DbServer stringId 
- The OCID of Exacc Db server.
- dbServer StringId 
- The OCID of Exacc Db server.
- dbServer stringId 
- The OCID of Exacc Db server.
- db_server_ strid 
- The OCID of Exacc Db server.
- dbServer StringId 
- The OCID of Exacc Db server.
VmClusterRemoveVirtualMachineFileSystemConfigurationDetail, VmClusterRemoveVirtualMachineFileSystemConfigurationDetailArgs                  
- FileSystem intSize Gb 
- The file system size to be allocated in GBs.
- MountPoint string
- The mount point of file system.
- FileSystem intSize Gb 
- The file system size to be allocated in GBs.
- MountPoint string
- The mount point of file system.
- fileSystem IntegerSize Gb 
- The file system size to be allocated in GBs.
- mountPoint String
- The mount point of file system.
- fileSystem numberSize Gb 
- The file system size to be allocated in GBs.
- mountPoint string
- The mount point of file system.
- file_system_ intsize_ gb 
- The file system size to be allocated in GBs.
- mount_point str
- The mount point of file system.
- fileSystem NumberSize Gb 
- The file system size to be allocated in GBs.
- mountPoint String
- The mount point of file system.
Import
VmClusterRemoveVirtualMachine can be imported using the id, e.g.
$ pulumi import oci:Database/vmClusterRemoveVirtualMachine:VmClusterRemoveVirtualMachine test_vm_cluster_remove_virtual_machine "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.