oci logo
Oracle Cloud Infrastructure v0.13.0, Mar 28 23

oci.Database.getVmClusters

This data source provides the list of Vm Clusters in Oracle Cloud Infrastructure Database service.

Lists the VM clusters in the specified compartment. Applies to Exadata Cloud@Customer instances only. To list the cloud VM clusters in an Exadata Cloud Service instance, use the ListCloudVmClusters operation.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testVmClusters = Oci.Database.GetVmClusters.Invoke(new()
    {
        CompartmentId = @var.Compartment_id,
        DisplayName = @var.Vm_cluster_display_name,
        ExadataInfrastructureId = oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id,
        State = @var.Vm_cluster_state,
    });

});
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.GetVmClusters(ctx, &database.GetVmClustersArgs{
			CompartmentId:           _var.Compartment_id,
			DisplayName:             pulumi.StringRef(_var.Vm_cluster_display_name),
			ExadataInfrastructureId: pulumi.StringRef(oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id),
			State:                   pulumi.StringRef(_var.Vm_cluster_state),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetVmClustersArgs;
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) {
        final var testVmClusters = DatabaseFunctions.getVmClusters(GetVmClustersArgs.builder()
            .compartmentId(var_.compartment_id())
            .displayName(var_.vm_cluster_display_name())
            .exadataInfrastructureId(oci_database_exadata_infrastructure.test_exadata_infrastructure().id())
            .state(var_.vm_cluster_state())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_vm_clusters = oci.Database.get_vm_clusters(compartment_id=var["compartment_id"],
    display_name=var["vm_cluster_display_name"],
    exadata_infrastructure_id=oci_database_exadata_infrastructure["test_exadata_infrastructure"]["id"],
    state=var["vm_cluster_state"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testVmClusters = oci.Database.getVmClusters({
    compartmentId: _var.compartment_id,
    displayName: _var.vm_cluster_display_name,
    exadataInfrastructureId: oci_database_exadata_infrastructure.test_exadata_infrastructure.id,
    state: _var.vm_cluster_state,
});
variables:
  testVmClusters:
    fn::invoke:
      Function: oci:Database:getVmClusters
      Arguments:
        compartmentId: ${var.compartment_id}
        displayName: ${var.vm_cluster_display_name}
        exadataInfrastructureId: ${oci_database_exadata_infrastructure.test_exadata_infrastructure.id}
        state: ${var.vm_cluster_state}

Using getVmClusters

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getVmClusters(args: GetVmClustersArgs, opts?: InvokeOptions): Promise<GetVmClustersResult>
function getVmClustersOutput(args: GetVmClustersOutputArgs, opts?: InvokeOptions): Output<GetVmClustersResult>
def get_vm_clusters(compartment_id: Optional[str] = None,
                    display_name: Optional[str] = None,
                    exadata_infrastructure_id: Optional[str] = None,
                    filters: Optional[Sequence[_database.GetVmClustersFilter]] = None,
                    state: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetVmClustersResult
def get_vm_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
                    display_name: Optional[pulumi.Input[str]] = None,
                    exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetVmClustersFilterArgs]]]] = None,
                    state: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetVmClustersResult]
func GetVmClusters(ctx *Context, args *GetVmClustersArgs, opts ...InvokeOption) (*GetVmClustersResult, error)
func GetVmClustersOutput(ctx *Context, args *GetVmClustersOutputArgs, opts ...InvokeOption) GetVmClustersResultOutput

> Note: This function is named GetVmClusters in the Go SDK.

public static class GetVmClusters 
{
    public static Task<GetVmClustersResult> InvokeAsync(GetVmClustersArgs args, InvokeOptions? opts = null)
    public static Output<GetVmClustersResult> Invoke(GetVmClustersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVmClustersResult> getVmClusters(GetVmClustersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:Database/getVmClusters:getVmClusters
  arguments:
    # arguments dictionary

The following arguments are supported:

CompartmentId string

The compartment OCID.

DisplayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

ExadataInfrastructureId string

If provided, filters the results for the given Exadata Infrastructure.

Filters List<GetVmClustersFilter>
State string

A filter to return only resources that match the given lifecycle state exactly.

CompartmentId string

The compartment OCID.

DisplayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

ExadataInfrastructureId string

If provided, filters the results for the given Exadata Infrastructure.

Filters []GetVmClustersFilter
State string

A filter to return only resources that match the given lifecycle state exactly.

compartmentId String

The compartment OCID.

displayName String

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadataInfrastructureId String

If provided, filters the results for the given Exadata Infrastructure.

filters List<GetVmClustersFilter>
state String

A filter to return only resources that match the given lifecycle state exactly.

compartmentId string

The compartment OCID.

displayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadataInfrastructureId string

If provided, filters the results for the given Exadata Infrastructure.

filters GetVmClustersFilter[]
state string

A filter to return only resources that match the given lifecycle state exactly.

compartment_id str

The compartment OCID.

display_name str

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadata_infrastructure_id str

If provided, filters the results for the given Exadata Infrastructure.

filters GetVmClustersFilter]
state str

A filter to return only resources that match the given lifecycle state exactly.

compartmentId String

The compartment OCID.

displayName String

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadataInfrastructureId String

If provided, filters the results for the given Exadata Infrastructure.

filters List<Property Map>
state String

A filter to return only resources that match the given lifecycle state exactly.

getVmClusters Result

The following output properties are available:

CompartmentId string

The OCID of the compartment.

Id string

The provider-assigned unique ID for this managed resource.

VmClusters List<GetVmClustersVmCluster>

The list of vm_clusters.

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.

Filters List<GetVmClustersFilter>
State string

The current state of the VM cluster.

CompartmentId string

The OCID of the compartment.

Id string

The provider-assigned unique ID for this managed resource.

VmClusters []GetVmClustersVmCluster

The list of vm_clusters.

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.

Filters []GetVmClustersFilter
State string

The current state of the VM cluster.

compartmentId String

The OCID of the compartment.

id String

The provider-assigned unique ID for this managed resource.

vmClusters List<GetVmClustersVmCluster>

The list of vm_clusters.

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.

filters List<GetVmClustersFilter>
state String

The current state of the VM cluster.

compartmentId string

The OCID of the compartment.

id string

The provider-assigned unique ID for this managed resource.

vmClusters GetVmClustersVmCluster[]

The list of vm_clusters.

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.

filters GetVmClustersFilter[]
state string

The current state of the VM cluster.

compartment_id str

The OCID of the compartment.

id str

The provider-assigned unique ID for this managed resource.

vm_clusters GetVmClustersVmCluster]

The list of vm_clusters.

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.

filters GetVmClustersFilter]
state str

The current state of the VM cluster.

compartmentId String

The OCID of the compartment.

id String

The provider-assigned unique ID for this managed resource.

vmClusters List<Property Map>

The list of vm_clusters.

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.

filters List<Property Map>
state String

The current state of the VM cluster.

Supporting Types

GetVmClustersFilter

Name string
Values List<string>
Regex bool
Name string
Values []string
Regex bool
name String
values List<String>
regex Boolean
name string
values string[]
regex boolean
name str
values Sequence[str]
regex bool
name String
values List<String>
regex Boolean

GetVmClustersVmCluster

CompartmentId string

The compartment OCID.

CpuCoreCount int
CpusEnabled int

The number of enabled CPU cores.

DataCollectionOptions List<GetVmClustersVmClusterDataCollectionOption>

Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.

DataStorageSizeInGb double

Size of the DATA disk group in GBs.

DataStorageSizeInTbs double

Size, in terabytes, of the DATA disk group.

DbNodeStorageSizeInGbs int

The local node storage allocated in GBs.

DbServers List<string>

The list of Db server.

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

A filter to return only resources that match the entire display name given. The match is not case sensitive.

ExadataInfrastructureId string

If provided, filters the results for the given 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 OCID of 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.

OcpuCount double
OcpusEnabled double
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

A filter to return only resources that match the given lifecycle state exactly.

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.

CompartmentId string

The compartment OCID.

CpuCoreCount int
CpusEnabled int

The number of enabled CPU cores.

DataCollectionOptions []GetVmClustersVmClusterDataCollectionOption

Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.

DataStorageSizeInGb float64

Size of the DATA disk group in GBs.

DataStorageSizeInTbs float64

Size, in terabytes, of the DATA disk group.

DbNodeStorageSizeInGbs int

The local node storage allocated in GBs.

DbServers []string

The list of Db server.

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

A filter to return only resources that match the entire display name given. The match is not case sensitive.

ExadataInfrastructureId string

If provided, filters the results for the given 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 OCID of 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.

OcpuCount float64
OcpusEnabled float64
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

A filter to return only resources that match the given lifecycle state exactly.

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.

compartmentId String

The compartment OCID.

cpuCoreCount Integer
cpusEnabled Integer

The number of enabled CPU cores.

dataCollectionOptions List<GetVmClustersVmClusterDataCollectionOption>

Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.

dataStorageSizeInGb Double

Size of the DATA disk group in GBs.

dataStorageSizeInTbs Double

Size, in terabytes, of the DATA disk group.

dbNodeStorageSizeInGbs Integer

The local node storage allocated in GBs.

dbServers List<String>

The list of Db server.

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

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadataInfrastructureId String

If provided, filters the results for the given 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 OCID of 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.

ocpuCount Double
ocpusEnabled Double
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

A filter to return only resources that match the given lifecycle state exactly.

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.

compartmentId string

The compartment OCID.

cpuCoreCount number
cpusEnabled number

The number of enabled CPU cores.

dataCollectionOptions GetVmClustersVmClusterDataCollectionOption[]

Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.

dataStorageSizeInGb number

Size of the DATA disk group in GBs.

dataStorageSizeInTbs number

Size, in terabytes, of the DATA disk group.

dbNodeStorageSizeInGbs number

The local node storage allocated in GBs.

dbServers string[]

The list of Db server.

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

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadataInfrastructureId string

If provided, filters the results for the given 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 OCID of 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.

ocpuCount number
ocpusEnabled number
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

A filter to return only resources that match the given lifecycle state exactly.

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.

compartment_id str

The compartment OCID.

cpu_core_count int
cpus_enabled int

The number of enabled CPU cores.

data_collection_options GetVmClustersVmClusterDataCollectionOption]

Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.

data_storage_size_in_gb float

Size of the DATA disk group in GBs.

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[str]

The list of Db server.

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

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadata_infrastructure_id str

If provided, filters the results for the given 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 OCID of 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.

ocpu_count float
ocpus_enabled float
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

A filter to return only resources that match the given lifecycle state exactly.

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.

compartmentId String

The compartment OCID.

cpuCoreCount Number
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.

dataStorageSizeInGb Number

Size of the DATA disk group in GBs.

dataStorageSizeInTbs Number

Size, in terabytes, of the DATA disk group.

dbNodeStorageSizeInGbs Number

The local node storage allocated in GBs.

dbServers List<String>

The list of Db server.

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

A filter to return only resources that match the entire display name given. The match is not case sensitive.

exadataInfrastructureId String

If provided, filters the results for the given 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 OCID of 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.

ocpuCount Number
ocpusEnabled Number
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

A filter to return only resources that match the given lifecycle state exactly.

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.

GetVmClustersVmClusterDataCollectionOption

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.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.