1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. VmClusterRemoveVirtualMachine
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Database.VmClusterRemoveVirtualMachine

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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("testVmClusterRemoveVirtualMachine", {
        dbServers: [{
            dbServerId: oci_database_db_server.test_db_server.id,
        }],
        vmClusterId: oci_database_vm_cluster.test_vm_cluster.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_vm_cluster_remove_virtual_machine = oci.database.VmClusterRemoveVirtualMachine("testVmClusterRemoveVirtualMachine",
        db_servers=[oci.database.VmClusterRemoveVirtualMachineDbServerArgs(
            db_server_id=oci_database_db_server["test_db_server"]["id"],
        )],
        vm_cluster_id=oci_database_vm_cluster["test_vm_cluster"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.NewVmClusterRemoveVirtualMachine(ctx, "testVmClusterRemoveVirtualMachine", &Database.VmClusterRemoveVirtualMachineArgs{
    			DbServers: database.VmClusterRemoveVirtualMachineDbServerArray{
    				&database.VmClusterRemoveVirtualMachineDbServerArgs{
    					DbServerId: pulumi.Any(oci_database_db_server.Test_db_server.Id),
    				},
    			},
    			VmClusterId: pulumi.Any(oci_database_vm_cluster.Test_vm_cluster.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("testVmClusterRemoveVirtualMachine", new()
        {
            DbServers = new[]
            {
                new Oci.Database.Inputs.VmClusterRemoveVirtualMachineDbServerArgs
                {
                    DbServerId = oci_database_db_server.Test_db_server.Id,
                },
            },
            VmClusterId = oci_database_vm_cluster.Test_vm_cluster.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(oci_database_db_server.test_db_server().id())
                    .build())
                .vmClusterId(oci_database_vm_cluster.test_vm_cluster().id())
                .build());
    
        }
    }
    
    resources:
      testVmClusterRemoveVirtualMachine:
        type: oci:Database:VmClusterRemoveVirtualMachine
        properties:
          #Required
          dbServers:
            - dbServerId: ${oci_database_db_server.test_db_server.id}
          vmClusterId: ${oci_database_vm_cluster.test_vm_cluster.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[_database.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.

    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=[oci.database.VmClusterRemoveVirtualMachineDbServerArgs(
            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

    The VmClusterRemoveVirtualMachine resource accepts the following input properties:

    DbServers List<VmClusterRemoveVirtualMachineDbServer>
    The list of Exacc DB servers for the cluster to be removed.
    VmClusterId string

    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 []VmClusterRemoveVirtualMachineDbServerArgs
    The list of Exacc DB servers for the cluster to be removed.
    VmClusterId string

    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<VmClusterRemoveVirtualMachineDbServer>
    The list of Exacc DB servers for the cluster to be removed.
    vmClusterId String

    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 VmClusterRemoveVirtualMachineDbServer[]
    The list of Exacc DB servers for the cluster to be removed.
    vmClusterId string

    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[database.VmClusterRemoveVirtualMachineDbServerArgs]
    The list of Exacc DB servers for the cluster to be removed.
    vm_cluster_id str

    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.
    vmClusterId String

    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.
    CompartmentId string
    The OCID of the compartment.
    CpusEnabled int
    The number of enabled CPU cores.
    DataCollectionOptions List<VmClusterRemoveVirtualMachineDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInTbs double
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DefinedTags Dictionary<string, object>
    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.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags Dictionary<string, object>
    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.
    IsLocalBackupEnabled bool
    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.
    IsSparseDiskgroupEnabled bool
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    LastPatchHistoryEntryId string
    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.
    MemorySizeInGbs int
    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.
    SshPublicKeys List<string>
    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.
    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.
    VmClusterNetworkId string
    The OCID of the VM cluster network.
    AvailabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    CompartmentId string
    The OCID of the compartment.
    CpusEnabled int
    The number of enabled CPU cores.
    DataCollectionOptions []VmClusterRemoveVirtualMachineDataCollectionOption
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInTbs float64
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DefinedTags map[string]interface{}
    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.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags map[string]interface{}
    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.
    IsLocalBackupEnabled bool
    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.
    IsSparseDiskgroupEnabled bool
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    LastPatchHistoryEntryId string
    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.
    MemorySizeInGbs int
    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.
    SshPublicKeys []string
    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.
    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.
    VmClusterNetworkId string
    The OCID of the VM cluster network.
    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    compartmentId String
    The OCID of the compartment.
    cpusEnabled Integer
    The number of enabled CPU cores.
    dataCollectionOptions List<VmClusterRemoveVirtualMachineDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInTbs Double
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Integer
    The local node storage allocated in GBs.
    definedTags Map<String,Object>
    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.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<String,Object>
    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.
    isLocalBackupEnabled Boolean
    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.
    isSparseDiskgroupEnabled Boolean
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    lastPatchHistoryEntryId String
    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.
    memorySizeInGbs Integer
    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.
    sshPublicKeys List<String>
    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.
    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.
    vmClusterNetworkId String
    The OCID of the VM cluster network.
    availabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    compartmentId string
    The OCID of the compartment.
    cpusEnabled number
    The number of enabled CPU cores.
    dataCollectionOptions VmClusterRemoveVirtualMachineDataCollectionOption[]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInTbs number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs number
    The local node storage allocated in GBs.
    definedTags {[key: string]: any}
    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.
    exadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    freeformTags {[key: string]: any}
    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.
    isLocalBackupEnabled boolean
    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.
    isSparseDiskgroupEnabled boolean
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    lastPatchHistoryEntryId string
    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.
    memorySizeInGbs number
    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.
    sshPublicKeys string[]
    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.
    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.
    vmClusterNetworkId string
    The OCID of the VM cluster network.
    availability_domain str
    The name of the availability domain that the VM cluster is located in.
    compartment_id str
    The OCID of the compartment.
    cpus_enabled int
    The number of enabled CPU cores.
    data_collection_options Sequence[database.VmClusterRemoveVirtualMachineDataCollectionOption]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    data_storage_size_in_tbs float
    Size, in terabytes, of the DATA disk group.
    db_node_storage_size_in_gbs int
    The local node storage allocated in GBs.
    defined_tags Mapping[str, Any]
    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_id str
    The OCID of the Exadata infrastructure.
    freeform_tags Mapping[str, Any]
    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_backup_enabled bool
    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_diskgroup_enabled bool
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    last_patch_history_entry_id str
    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_in_gbs int
    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_keys Sequence[str]
    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.
    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_network_id str
    The OCID of the VM cluster network.
    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    compartmentId String
    The OCID of the compartment.
    cpusEnabled Number
    The number of enabled CPU cores.
    dataCollectionOptions List<Property Map>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInTbs Number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Number
    The local node storage allocated in GBs.
    definedTags Map<Any>
    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.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<Any>
    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.
    isLocalBackupEnabled Boolean
    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.
    isSparseDiskgroupEnabled Boolean
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    lastPatchHistoryEntryId String
    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.
    memorySizeInGbs Number
    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.
    sshPublicKeys List<String>
    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.
    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.
    vmClusterNetworkId String
    The OCID of the VM cluster network.

    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,
            compartment_id: Optional[str] = None,
            cpus_enabled: Optional[int] = None,
            data_collection_options: Optional[Sequence[_database.VmClusterRemoveVirtualMachineDataCollectionOptionArgs]] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_servers: Optional[Sequence[_database.VmClusterRemoveVirtualMachineDbServerArgs]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            exadata_infrastructure_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = 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,
            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) -> VmClusterRemoveVirtualMachine
    func 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)
    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.
    The following state arguments are supported:
    AvailabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    CompartmentId string
    The OCID of the compartment.
    CpusEnabled int
    The number of enabled CPU cores.
    DataCollectionOptions List<VmClusterRemoveVirtualMachineDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInTbs double
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServers List<VmClusterRemoveVirtualMachineDbServer>
    The list of Exacc DB servers for the cluster to be removed.
    DefinedTags Dictionary<string, object>
    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.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags Dictionary<string, object>
    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.
    IsLocalBackupEnabled bool
    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.
    IsSparseDiskgroupEnabled bool
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    LastPatchHistoryEntryId string
    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.
    MemorySizeInGbs int
    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.
    SshPublicKeys List<string>
    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.
    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.
    VmClusterId string

    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

    VmClusterNetworkId string
    The OCID of the VM cluster network.
    AvailabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    CompartmentId string
    The OCID of the compartment.
    CpusEnabled int
    The number of enabled CPU cores.
    DataCollectionOptions []VmClusterRemoveVirtualMachineDataCollectionOptionArgs
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInTbs float64
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServers []VmClusterRemoveVirtualMachineDbServerArgs
    The list of Exacc DB servers for the cluster to be removed.
    DefinedTags map[string]interface{}
    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.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags map[string]interface{}
    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.
    IsLocalBackupEnabled bool
    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.
    IsSparseDiskgroupEnabled bool
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    LastPatchHistoryEntryId string
    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.
    MemorySizeInGbs int
    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.
    SshPublicKeys []string
    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.
    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.
    VmClusterId string

    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

    VmClusterNetworkId string
    The OCID of the VM cluster network.
    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    compartmentId String
    The OCID of the compartment.
    cpusEnabled Integer
    The number of enabled CPU cores.
    dataCollectionOptions List<VmClusterRemoveVirtualMachineDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInTbs Double
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Integer
    The local node storage allocated in GBs.
    dbServers List<VmClusterRemoveVirtualMachineDbServer>
    The list of Exacc DB servers for the cluster to be removed.
    definedTags Map<String,Object>
    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.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<String,Object>
    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.
    isLocalBackupEnabled Boolean
    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.
    isSparseDiskgroupEnabled Boolean
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    lastPatchHistoryEntryId String
    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.
    memorySizeInGbs Integer
    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.
    sshPublicKeys List<String>
    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.
    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.
    vmClusterId String

    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

    vmClusterNetworkId String
    The OCID of the VM cluster network.
    availabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    compartmentId string
    The OCID of the compartment.
    cpusEnabled number
    The number of enabled CPU cores.
    dataCollectionOptions VmClusterRemoveVirtualMachineDataCollectionOption[]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInTbs number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs number
    The local node storage allocated in GBs.
    dbServers VmClusterRemoveVirtualMachineDbServer[]
    The list of Exacc DB servers for the cluster to be removed.
    definedTags {[key: string]: any}
    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.
    exadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    freeformTags {[key: string]: any}
    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.
    isLocalBackupEnabled boolean
    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.
    isSparseDiskgroupEnabled boolean
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    lastPatchHistoryEntryId string
    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.
    memorySizeInGbs number
    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.
    sshPublicKeys string[]
    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.
    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.
    vmClusterId string

    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

    vmClusterNetworkId string
    The OCID of the VM cluster network.
    availability_domain str
    The name of the availability domain that the VM cluster is located in.
    compartment_id str
    The OCID of the compartment.
    cpus_enabled int
    The number of enabled CPU cores.
    data_collection_options Sequence[database.VmClusterRemoveVirtualMachineDataCollectionOptionArgs]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    data_storage_size_in_tbs float
    Size, in terabytes, of the DATA disk group.
    db_node_storage_size_in_gbs int
    The local node storage allocated in GBs.
    db_servers Sequence[database.VmClusterRemoveVirtualMachineDbServerArgs]
    The list of Exacc DB servers for the cluster to be removed.
    defined_tags Mapping[str, Any]
    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_id str
    The OCID of the Exadata infrastructure.
    freeform_tags Mapping[str, Any]
    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_backup_enabled bool
    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_diskgroup_enabled bool
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    last_patch_history_entry_id str
    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_in_gbs int
    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_keys Sequence[str]
    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.
    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_id str

    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_network_id str
    The OCID of the VM cluster network.
    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    compartmentId String
    The OCID of the compartment.
    cpusEnabled Number
    The number of enabled CPU cores.
    dataCollectionOptions List<Property Map>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInTbs Number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Number
    The local node storage allocated in GBs.
    dbServers List<Property Map>
    The list of Exacc DB servers for the cluster to be removed.
    definedTags Map<Any>
    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.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<Any>
    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.
    isLocalBackupEnabled Boolean
    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.
    isSparseDiskgroupEnabled Boolean
    If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
    lastPatchHistoryEntryId String
    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.
    memorySizeInGbs Number
    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.
    sshPublicKeys List<String>
    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.
    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.
    vmClusterId String

    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

    vmClusterNetworkId String
    The OCID of the VM cluster network.

    Supporting Types

    VmClusterRemoveVirtualMachineDataCollectionOption, VmClusterRemoveVirtualMachineDataCollectionOptionArgs

    IsDiagnosticsEventsEnabled bool
    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 UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    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, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    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, updateCloudVmCluster or updateDbsystem API.
    IsDiagnosticsEventsEnabled bool
    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 UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    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, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    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, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    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 UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    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, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    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, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled boolean
    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 UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled boolean
    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, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled boolean
    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, updateCloudVmCluster or updateDbsystem API.
    is_diagnostics_events_enabled bool
    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 UpdateVmCluster or updateCloudVmCluster API.
    is_health_monitoring_enabled bool
    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, UpdateCloudVmCluster or updateDbsystem API.
    is_incident_logs_enabled bool
    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, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    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 UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    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, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    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, updateCloudVmCluster or updateDbsystem API.

    VmClusterRemoveVirtualMachineDbServer, VmClusterRemoveVirtualMachineDbServerArgs

    DbServerId string
    The OCID of Exacc Db server.
    DbServerId string
    The OCID of Exacc Db server.
    dbServerId String
    The OCID of Exacc Db server.
    dbServerId string
    The OCID of Exacc Db server.
    db_server_id str
    The OCID of Exacc Db server.
    dbServerId String
    The OCID of Exacc Db server.

    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi