1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousVmClusters
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Database.getAutonomousVmClusters

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

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

Gets a list of Exadata Cloud@Customer Autonomous VM clusters in the specified compartment. To list Autonomous VM Clusters in the Oracle Cloud, see ListCloudAutonomousVmClusters.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAutonomousVmClusters = oci.Database.getAutonomousVmClusters({
    compartmentId: compartmentId,
    displayName: autonomousVmClusterDisplayName,
    exadataInfrastructureId: testExadataInfrastructure.id,
    state: autonomousVmClusterState,
});
Copy
import pulumi
import pulumi_oci as oci

test_autonomous_vm_clusters = oci.Database.get_autonomous_vm_clusters(compartment_id=compartment_id,
    display_name=autonomous_vm_cluster_display_name,
    exadata_infrastructure_id=test_exadata_infrastructure["id"],
    state=autonomous_vm_cluster_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetAutonomousVmClusters(ctx, &database.GetAutonomousVmClustersArgs{
			CompartmentId:           compartmentId,
			DisplayName:             pulumi.StringRef(autonomousVmClusterDisplayName),
			ExadataInfrastructureId: pulumi.StringRef(testExadataInfrastructure.Id),
			State:                   pulumi.StringRef(autonomousVmClusterState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAutonomousVmClusters = Oci.Database.GetAutonomousVmClusters.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = autonomousVmClusterDisplayName,
        ExadataInfrastructureId = testExadataInfrastructure.Id,
        State = autonomousVmClusterState,
    });

});
Copy
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.GetAutonomousVmClustersArgs;
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 testAutonomousVmClusters = DatabaseFunctions.getAutonomousVmClusters(GetAutonomousVmClustersArgs.builder()
            .compartmentId(compartmentId)
            .displayName(autonomousVmClusterDisplayName)
            .exadataInfrastructureId(testExadataInfrastructure.id())
            .state(autonomousVmClusterState)
            .build());

    }
}
Copy
variables:
  testAutonomousVmClusters:
    fn::invoke:
      function: oci:Database:getAutonomousVmClusters
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${autonomousVmClusterDisplayName}
        exadataInfrastructureId: ${testExadataInfrastructure.id}
        state: ${autonomousVmClusterState}
Copy

Using getAutonomousVmClusters

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 getAutonomousVmClusters(args: GetAutonomousVmClustersArgs, opts?: InvokeOptions): Promise<GetAutonomousVmClustersResult>
function getAutonomousVmClustersOutput(args: GetAutonomousVmClustersOutputArgs, opts?: InvokeOptions): Output<GetAutonomousVmClustersResult>
Copy
def get_autonomous_vm_clusters(compartment_id: Optional[str] = None,
                               display_name: Optional[str] = None,
                               exadata_infrastructure_id: Optional[str] = None,
                               filters: Optional[Sequence[_database.GetAutonomousVmClustersFilter]] = None,
                               state: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetAutonomousVmClustersResult
def get_autonomous_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.GetAutonomousVmClustersFilterArgs]]]] = None,
                               state: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousVmClustersResult]
Copy
func GetAutonomousVmClusters(ctx *Context, args *GetAutonomousVmClustersArgs, opts ...InvokeOption) (*GetAutonomousVmClustersResult, error)
func GetAutonomousVmClustersOutput(ctx *Context, args *GetAutonomousVmClustersOutputArgs, opts ...InvokeOption) GetAutonomousVmClustersResultOutput
Copy

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

public static class GetAutonomousVmClusters 
{
    public static Task<GetAutonomousVmClustersResult> InvokeAsync(GetAutonomousVmClustersArgs args, InvokeOptions? opts = null)
    public static Output<GetAutonomousVmClustersResult> Invoke(GetAutonomousVmClustersInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAutonomousVmClustersResult> getAutonomousVmClusters(GetAutonomousVmClustersArgs args, InvokeOptions options)
public static Output<GetAutonomousVmClustersResult> getAutonomousVmClusters(GetAutonomousVmClustersArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getAutonomousVmClusters:getAutonomousVmClusters
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. 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 Changes to this property will trigger replacement. List<GetAutonomousVmClustersFilter>
State string
A filter to return only resources that match the given lifecycle state exactly.
CompartmentId This property is required. 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 Changes to this property will trigger replacement. []GetAutonomousVmClustersFilter
State string
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. 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 Changes to this property will trigger replacement. List<GetAutonomousVmClustersFilter>
state String
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. 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 Changes to this property will trigger replacement. GetAutonomousVmClustersFilter[]
state string
A filter to return only resources that match the given lifecycle state exactly.
compartment_id This property is required. 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 Changes to this property will trigger replacement. Sequence[database.GetAutonomousVmClustersFilter]
state str
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. 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 Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources that match the given lifecycle state exactly.

getAutonomousVmClusters Result

The following output properties are available:

AutonomousVmClusters List<GetAutonomousVmClustersAutonomousVmCluster>
The list of autonomous_vm_clusters.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
Filters List<GetAutonomousVmClustersFilter>
State string
The current state of the Autonomous VM cluster.
AutonomousVmClusters []GetAutonomousVmClustersAutonomousVmCluster
The list of autonomous_vm_clusters.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
Filters []GetAutonomousVmClustersFilter
State string
The current state of the Autonomous VM cluster.
autonomousVmClusters List<GetAutonomousVmClustersAutonomousVmCluster>
The list of autonomous_vm_clusters.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
exadataInfrastructureId String
The OCID of the Exadata infrastructure.
filters List<GetAutonomousVmClustersFilter>
state String
The current state of the Autonomous VM cluster.
autonomousVmClusters GetAutonomousVmClustersAutonomousVmCluster[]
The list of autonomous_vm_clusters.
compartmentId string
The OCID of the compartment.
id string
The provider-assigned unique ID for this managed resource.
displayName string
The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
exadataInfrastructureId string
The OCID of the Exadata infrastructure.
filters GetAutonomousVmClustersFilter[]
state string
The current state of the Autonomous VM cluster.
autonomous_vm_clusters Sequence[database.GetAutonomousVmClustersAutonomousVmCluster]
The list of autonomous_vm_clusters.
compartment_id str
The OCID of the compartment.
id str
The provider-assigned unique ID for this managed resource.
display_name str
The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
exadata_infrastructure_id str
The OCID of the Exadata infrastructure.
filters Sequence[database.GetAutonomousVmClustersFilter]
state str
The current state of the Autonomous VM cluster.
autonomousVmClusters List<Property Map>
The list of autonomous_vm_clusters.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the Autonomous 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 Autonomous VM cluster.

Supporting Types

GetAutonomousVmClustersAutonomousVmCluster

AutonomousDataStoragePercentage This property is required. double
AutonomousDataStorageSizeInTbs This property is required. double
The data disk group size allocated for Autonomous Databases, in TBs.
AvailableAutonomousDataStorageSizeInTbs This property is required. double
The data disk group size available for Autonomous Databases, in TBs.
AvailableContainerDatabases This property is required. int
The number of Autonomous Container Databases that can be created with the currently available local storage.
AvailableCpus This property is required. int
The numnber of CPU cores available.
AvailableDataStorageSizeInTbs This property is required. double
Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.
CompartmentId This property is required. string
The compartment OCID.
ComputeModel This property is required. string
The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
CpuCoreCountPerNode This property is required. int
The number of CPU cores enabled per VM cluster node.
CpuPercentage This property is required. double
CpusEnabled This property is required. int
The number of enabled CPU cores.
CpusLowestScaledValue This property is required. int
The lowest value to which cpus can be scaled down.
DataStorageSizeInGb This property is required. double
The total data storage allocated in GBs.
DataStorageSizeInTbs This property is required. double
The total data storage allocated in TBs
DbNodeStorageSizeInGbs This property is required. int
The local node storage allocated in GBs.
DbServers This property is required. List<string>
The list of OCIDs of the Db servers.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
ExadataInfrastructureId This property is required. string
If provided, filters the results for the given Exadata Infrastructure.
ExadataStorageInTbsLowestScaledValue This property is required. double
The lowest value to which exadataStorage(in TBs) can be scaled down.
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the Autonomous VM cluster.
IsLocalBackupEnabled This property is required. bool
If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
IsMtlsEnabled This property is required. bool
Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
LastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
LicenseModel This property is required. string
The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaintenanceWindowDetails This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail>
MaintenanceWindows This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxAcdsLowestScaledValue This property is required. int
The lowest value to which maximum number of ACDs can be scaled down.
MemoryPerOracleComputeUnitInGbs This property is required. int
The amount of memory (in GBs) to be enabled per OCPU or ECPU.
MemorySizeInGbs This property is required. int
The memory allocated in GBs.
NextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
NodeCount This property is required. int
The number of nodes in the Autonomous VM Cluster.
NonProvisionableAutonomousContainerDatabases This property is required. int
OcpusEnabled This property is required. double
The number of enabled OCPU cores.
ProvisionableAutonomousContainerDatabases This property is required. int
Deprecated. Use field totalContainerDatabases.
ProvisionedAutonomousContainerDatabases This property is required. int
The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
ProvisionedCpus This property is required. double
The number of CPUs provisioned in an Autonomous VM Cluster.
ReclaimableCpus This property is required. int
For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
ReservedCpus This property is required. double
The number of CPUs reserved in an Autonomous VM Cluster.
ScanListenerPortNonTls This property is required. int
The SCAN Listener Non TLS port number. Default value is 1521.
ScanListenerPortTls This property is required. int
The SCAN Listener TLS port number. Default value is 2484.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeCreated This property is required. string
The date and time that the Autonomous VM cluster was created.
TimeDatabaseSslCertificateExpires This property is required. string
The date and time of Database SSL certificate expiration.
TimeOrdsCertificateExpires This property is required. string
The date and time of ORDS certificate expiration.
TimeZone This property is required. string
The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
TotalAutonomousDataStorageInTbs This property is required. double
TotalContainerDatabases This property is required. int
The total number of Autonomous Container Databases that can be created.
VmClusterNetworkId This property is required. string
The OCID of the VM cluster network.
AutonomousDataStoragePercentage This property is required. float64
AutonomousDataStorageSizeInTbs This property is required. float64
The data disk group size allocated for Autonomous Databases, in TBs.
AvailableAutonomousDataStorageSizeInTbs This property is required. float64
The data disk group size available for Autonomous Databases, in TBs.
AvailableContainerDatabases This property is required. int
The number of Autonomous Container Databases that can be created with the currently available local storage.
AvailableCpus This property is required. int
The numnber of CPU cores available.
AvailableDataStorageSizeInTbs This property is required. float64
Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.
CompartmentId This property is required. string
The compartment OCID.
ComputeModel This property is required. string
The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
CpuCoreCountPerNode This property is required. int
The number of CPU cores enabled per VM cluster node.
CpuPercentage This property is required. float64
CpusEnabled This property is required. int
The number of enabled CPU cores.
CpusLowestScaledValue This property is required. int
The lowest value to which cpus can be scaled down.
DataStorageSizeInGb This property is required. float64
The total data storage allocated in GBs.
DataStorageSizeInTbs This property is required. float64
The total data storage allocated in TBs
DbNodeStorageSizeInGbs This property is required. int
The local node storage allocated in GBs.
DbServers This property is required. []string
The list of OCIDs of the Db servers.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
ExadataInfrastructureId This property is required. string
If provided, filters the results for the given Exadata Infrastructure.
ExadataStorageInTbsLowestScaledValue This property is required. float64
The lowest value to which exadataStorage(in TBs) can be scaled down.
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the Autonomous VM cluster.
IsLocalBackupEnabled This property is required. bool
If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
IsMtlsEnabled This property is required. bool
Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
LastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
LicenseModel This property is required. string
The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaintenanceWindowDetails This property is required. []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail
MaintenanceWindows This property is required. []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxAcdsLowestScaledValue This property is required. int
The lowest value to which maximum number of ACDs can be scaled down.
MemoryPerOracleComputeUnitInGbs This property is required. int
The amount of memory (in GBs) to be enabled per OCPU or ECPU.
MemorySizeInGbs This property is required. int
The memory allocated in GBs.
NextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
NodeCount This property is required. int
The number of nodes in the Autonomous VM Cluster.
NonProvisionableAutonomousContainerDatabases This property is required. int
OcpusEnabled This property is required. float64
The number of enabled OCPU cores.
ProvisionableAutonomousContainerDatabases This property is required. int
Deprecated. Use field totalContainerDatabases.
ProvisionedAutonomousContainerDatabases This property is required. int
The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
ProvisionedCpus This property is required. float64
The number of CPUs provisioned in an Autonomous VM Cluster.
ReclaimableCpus This property is required. int
For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
ReservedCpus This property is required. float64
The number of CPUs reserved in an Autonomous VM Cluster.
ScanListenerPortNonTls This property is required. int
The SCAN Listener Non TLS port number. Default value is 1521.
ScanListenerPortTls This property is required. int
The SCAN Listener TLS port number. Default value is 2484.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeCreated This property is required. string
The date and time that the Autonomous VM cluster was created.
TimeDatabaseSslCertificateExpires This property is required. string
The date and time of Database SSL certificate expiration.
TimeOrdsCertificateExpires This property is required. string
The date and time of ORDS certificate expiration.
TimeZone This property is required. string
The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
TotalAutonomousDataStorageInTbs This property is required. float64
TotalContainerDatabases This property is required. int
The total number of Autonomous Container Databases that can be created.
VmClusterNetworkId This property is required. string
The OCID of the VM cluster network.
autonomousDataStoragePercentage This property is required. Double
autonomousDataStorageSizeInTbs This property is required. Double
The data disk group size allocated for Autonomous Databases, in TBs.
availableAutonomousDataStorageSizeInTbs This property is required. Double
The data disk group size available for Autonomous Databases, in TBs.
availableContainerDatabases This property is required. Integer
The number of Autonomous Container Databases that can be created with the currently available local storage.
availableCpus This property is required. Integer
The numnber of CPU cores available.
availableDataStorageSizeInTbs This property is required. Double
Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.
compartmentId This property is required. String
The compartment OCID.
computeModel This property is required. String
The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
cpuCoreCountPerNode This property is required. Integer
The number of CPU cores enabled per VM cluster node.
cpuPercentage This property is required. Double
cpusEnabled This property is required. Integer
The number of enabled CPU cores.
cpusLowestScaledValue This property is required. Integer
The lowest value to which cpus can be scaled down.
dataStorageSizeInGb This property is required. Double
The total data storage allocated in GBs.
dataStorageSizeInTbs This property is required. Double
The total data storage allocated in TBs
dbNodeStorageSizeInGbs This property is required. Integer
The local node storage allocated in GBs.
dbServers This property is required. List<String>
The list of OCIDs of the Db servers.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadataInfrastructureId This property is required. String
If provided, filters the results for the given Exadata Infrastructure.
exadataStorageInTbsLowestScaledValue This property is required. Double
The lowest value to which exadataStorage(in TBs) can be scaled down.
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the Autonomous VM cluster.
isLocalBackupEnabled This property is required. Boolean
If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
isMtlsEnabled This property is required. Boolean
Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
lastMaintenanceRunId This property is required. String
The OCID of the last maintenance run.
licenseModel This property is required. String
The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
maintenanceWindowDetails This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail>
maintenanceWindows This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxAcdsLowestScaledValue This property is required. Integer
The lowest value to which maximum number of ACDs can be scaled down.
memoryPerOracleComputeUnitInGbs This property is required. Integer
The amount of memory (in GBs) to be enabled per OCPU or ECPU.
memorySizeInGbs This property is required. Integer
The memory allocated in GBs.
nextMaintenanceRunId This property is required. String
The OCID of the next maintenance run.
nodeCount This property is required. Integer
The number of nodes in the Autonomous VM Cluster.
nonProvisionableAutonomousContainerDatabases This property is required. Integer
ocpusEnabled This property is required. Double
The number of enabled OCPU cores.
provisionableAutonomousContainerDatabases This property is required. Integer
Deprecated. Use field totalContainerDatabases.
provisionedAutonomousContainerDatabases This property is required. Integer
The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
provisionedCpus This property is required. Double
The number of CPUs provisioned in an Autonomous VM Cluster.
reclaimableCpus This property is required. Integer
For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
reservedCpus This property is required. Double
The number of CPUs reserved in an Autonomous VM Cluster.
scanListenerPortNonTls This property is required. Integer
The SCAN Listener Non TLS port number. Default value is 1521.
scanListenerPortTls This property is required. Integer
The SCAN Listener TLS port number. Default value is 2484.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. String
The date and time that the Autonomous VM cluster was created.
timeDatabaseSslCertificateExpires This property is required. String
The date and time of Database SSL certificate expiration.
timeOrdsCertificateExpires This property is required. String
The date and time of ORDS certificate expiration.
timeZone This property is required. String
The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
totalAutonomousDataStorageInTbs This property is required. Double
totalContainerDatabases This property is required. Integer
The total number of Autonomous Container Databases that can be created.
vmClusterNetworkId This property is required. String
The OCID of the VM cluster network.
autonomousDataStoragePercentage This property is required. number
autonomousDataStorageSizeInTbs This property is required. number
The data disk group size allocated for Autonomous Databases, in TBs.
availableAutonomousDataStorageSizeInTbs This property is required. number
The data disk group size available for Autonomous Databases, in TBs.
availableContainerDatabases This property is required. number
The number of Autonomous Container Databases that can be created with the currently available local storage.
availableCpus This property is required. number
The numnber of CPU cores available.
availableDataStorageSizeInTbs This property is required. number
Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.
compartmentId This property is required. string
The compartment OCID.
computeModel This property is required. string
The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
cpuCoreCountPerNode This property is required. number
The number of CPU cores enabled per VM cluster node.
cpuPercentage This property is required. number
cpusEnabled This property is required. number
The number of enabled CPU cores.
cpusLowestScaledValue This property is required. number
The lowest value to which cpus can be scaled down.
dataStorageSizeInGb This property is required. number
The total data storage allocated in GBs.
dataStorageSizeInTbs This property is required. number
The total data storage allocated in TBs
dbNodeStorageSizeInGbs This property is required. number
The local node storage allocated in GBs.
dbServers This property is required. string[]
The list of OCIDs of the Db servers.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadataInfrastructureId This property is required. string
If provided, filters the results for the given Exadata Infrastructure.
exadataStorageInTbsLowestScaledValue This property is required. number
The lowest value to which exadataStorage(in TBs) can be scaled down.
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. string
The OCID of the Autonomous VM cluster.
isLocalBackupEnabled This property is required. boolean
If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
isMtlsEnabled This property is required. boolean
Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
lastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
licenseModel This property is required. string
The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
maintenanceWindowDetails This property is required. GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail[]
maintenanceWindows This property is required. GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxAcdsLowestScaledValue This property is required. number
The lowest value to which maximum number of ACDs can be scaled down.
memoryPerOracleComputeUnitInGbs This property is required. number
The amount of memory (in GBs) to be enabled per OCPU or ECPU.
memorySizeInGbs This property is required. number
The memory allocated in GBs.
nextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
nodeCount This property is required. number
The number of nodes in the Autonomous VM Cluster.
nonProvisionableAutonomousContainerDatabases This property is required. number
ocpusEnabled This property is required. number
The number of enabled OCPU cores.
provisionableAutonomousContainerDatabases This property is required. number
Deprecated. Use field totalContainerDatabases.
provisionedAutonomousContainerDatabases This property is required. number
The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
provisionedCpus This property is required. number
The number of CPUs provisioned in an Autonomous VM Cluster.
reclaimableCpus This property is required. number
For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
reservedCpus This property is required. number
The number of CPUs reserved in an Autonomous VM Cluster.
scanListenerPortNonTls This property is required. number
The SCAN Listener Non TLS port number. Default value is 1521.
scanListenerPortTls This property is required. number
The SCAN Listener TLS port number. Default value is 2484.
state This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. string
The date and time that the Autonomous VM cluster was created.
timeDatabaseSslCertificateExpires This property is required. string
The date and time of Database SSL certificate expiration.
timeOrdsCertificateExpires This property is required. string
The date and time of ORDS certificate expiration.
timeZone This property is required. string
The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
totalAutonomousDataStorageInTbs This property is required. number
totalContainerDatabases This property is required. number
The total number of Autonomous Container Databases that can be created.
vmClusterNetworkId This property is required. string
The OCID of the VM cluster network.
autonomous_data_storage_percentage This property is required. float
autonomous_data_storage_size_in_tbs This property is required. float
The data disk group size allocated for Autonomous Databases, in TBs.
available_autonomous_data_storage_size_in_tbs This property is required. float
The data disk group size available for Autonomous Databases, in TBs.
available_container_databases This property is required. int
The number of Autonomous Container Databases that can be created with the currently available local storage.
available_cpus This property is required. int
The numnber of CPU cores available.
available_data_storage_size_in_tbs This property is required. float
Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.
compartment_id This property is required. str
The compartment OCID.
compute_model This property is required. str
The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
cpu_core_count_per_node This property is required. int
The number of CPU cores enabled per VM cluster node.
cpu_percentage This property is required. float
cpus_enabled This property is required. int
The number of enabled CPU cores.
cpus_lowest_scaled_value This property is required. int
The lowest value to which cpus can be scaled down.
data_storage_size_in_gb This property is required. float
The total data storage allocated in GBs.
data_storage_size_in_tbs This property is required. float
The total data storage allocated in TBs
db_node_storage_size_in_gbs This property is required. int
The local node storage allocated in GBs.
db_servers This property is required. Sequence[str]
The list of OCIDs of the Db servers.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name This property is required. str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadata_infrastructure_id This property is required. str
If provided, filters the results for the given Exadata Infrastructure.
exadata_storage_in_tbs_lowest_scaled_value This property is required. float
The lowest value to which exadataStorage(in TBs) can be scaled down.
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. str
The OCID of the Autonomous VM cluster.
is_local_backup_enabled This property is required. bool
If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
is_mtls_enabled This property is required. bool
Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
last_maintenance_run_id This property is required. str
The OCID of the last maintenance run.
license_model This property is required. str
The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
maintenance_window_details This property is required. Sequence[database.GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail]
maintenance_windows This property is required. Sequence[database.GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
max_acds_lowest_scaled_value This property is required. int
The lowest value to which maximum number of ACDs can be scaled down.
memory_per_oracle_compute_unit_in_gbs This property is required. int
The amount of memory (in GBs) to be enabled per OCPU or ECPU.
memory_size_in_gbs This property is required. int
The memory allocated in GBs.
next_maintenance_run_id This property is required. str
The OCID of the next maintenance run.
node_count This property is required. int
The number of nodes in the Autonomous VM Cluster.
non_provisionable_autonomous_container_databases This property is required. int
ocpus_enabled This property is required. float
The number of enabled OCPU cores.
provisionable_autonomous_container_databases This property is required. int
Deprecated. Use field totalContainerDatabases.
provisioned_autonomous_container_databases This property is required. int
The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
provisioned_cpus This property is required. float
The number of CPUs provisioned in an Autonomous VM Cluster.
reclaimable_cpus This property is required. int
For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
reserved_cpus This property is required. float
The number of CPUs reserved in an Autonomous VM Cluster.
scan_listener_port_non_tls This property is required. int
The SCAN Listener Non TLS port number. Default value is 1521.
scan_listener_port_tls This property is required. int
The SCAN Listener TLS port number. Default value is 2484.
state This property is required. str
A filter to return only resources that match the given lifecycle state exactly.
time_created This property is required. str
The date and time that the Autonomous VM cluster was created.
time_database_ssl_certificate_expires This property is required. str
The date and time of Database SSL certificate expiration.
time_ords_certificate_expires This property is required. str
The date and time of ORDS certificate expiration.
time_zone This property is required. str
The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
total_autonomous_data_storage_in_tbs This property is required. float
total_container_databases This property is required. int
The total number of Autonomous Container Databases that can be created.
vm_cluster_network_id This property is required. str
The OCID of the VM cluster network.
autonomousDataStoragePercentage This property is required. Number
autonomousDataStorageSizeInTbs This property is required. Number
The data disk group size allocated for Autonomous Databases, in TBs.
availableAutonomousDataStorageSizeInTbs This property is required. Number
The data disk group size available for Autonomous Databases, in TBs.
availableContainerDatabases This property is required. Number
The number of Autonomous Container Databases that can be created with the currently available local storage.
availableCpus This property is required. Number
The numnber of CPU cores available.
availableDataStorageSizeInTbs This property is required. Number
Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.
compartmentId This property is required. String
The compartment OCID.
computeModel This property is required. String
The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
cpuCoreCountPerNode This property is required. Number
The number of CPU cores enabled per VM cluster node.
cpuPercentage This property is required. Number
cpusEnabled This property is required. Number
The number of enabled CPU cores.
cpusLowestScaledValue This property is required. Number
The lowest value to which cpus can be scaled down.
dataStorageSizeInGb This property is required. Number
The total data storage allocated in GBs.
dataStorageSizeInTbs This property is required. Number
The total data storage allocated in TBs
dbNodeStorageSizeInGbs This property is required. Number
The local node storage allocated in GBs.
dbServers This property is required. List<String>
The list of OCIDs of the Db servers.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadataInfrastructureId This property is required. String
If provided, filters the results for the given Exadata Infrastructure.
exadataStorageInTbsLowestScaledValue This property is required. Number
The lowest value to which exadataStorage(in TBs) can be scaled down.
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the Autonomous VM cluster.
isLocalBackupEnabled This property is required. Boolean
If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
isMtlsEnabled This property is required. Boolean
Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
lastMaintenanceRunId This property is required. String
The OCID of the last maintenance run.
licenseModel This property is required. String
The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
maintenanceWindowDetails This property is required. List<Property Map>
maintenanceWindows This property is required. List<Property Map>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxAcdsLowestScaledValue This property is required. Number
The lowest value to which maximum number of ACDs can be scaled down.
memoryPerOracleComputeUnitInGbs This property is required. Number
The amount of memory (in GBs) to be enabled per OCPU or ECPU.
memorySizeInGbs This property is required. Number
The memory allocated in GBs.
nextMaintenanceRunId This property is required. String
The OCID of the next maintenance run.
nodeCount This property is required. Number
The number of nodes in the Autonomous VM Cluster.
nonProvisionableAutonomousContainerDatabases This property is required. Number
ocpusEnabled This property is required. Number
The number of enabled OCPU cores.
provisionableAutonomousContainerDatabases This property is required. Number
Deprecated. Use field totalContainerDatabases.
provisionedAutonomousContainerDatabases This property is required. Number
The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
provisionedCpus This property is required. Number
The number of CPUs provisioned in an Autonomous VM Cluster.
reclaimableCpus This property is required. Number
For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
reservedCpus This property is required. Number
The number of CPUs reserved in an Autonomous VM Cluster.
scanListenerPortNonTls This property is required. Number
The SCAN Listener Non TLS port number. Default value is 1521.
scanListenerPortTls This property is required. Number
The SCAN Listener TLS port number. Default value is 2484.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. String
The date and time that the Autonomous VM cluster was created.
timeDatabaseSslCertificateExpires This property is required. String
The date and time of Database SSL certificate expiration.
timeOrdsCertificateExpires This property is required. String
The date and time of ORDS certificate expiration.
timeZone This property is required. String
The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
totalAutonomousDataStorageInTbs This property is required. Number
totalContainerDatabases This property is required. Number
The total number of Autonomous Container Databases that can be created.
vmClusterNetworkId This property is required. String
The OCID of the VM cluster network.

GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow

CustomActionTimeoutInMins This property is required. int
DaysOfWeeks This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek>
Days during the week when maintenance should be performed.
HoursOfDays This property is required. List<int>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled This property is required. bool
IsMonthlyPatchingEnabled This property is required. bool
LeadTimeInWeeks This property is required. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth>
Months during the year when maintenance should be performed.
PatchingMode This property is required. string
Preference This property is required. string
The maintenance window scheduling preference.
SkipRus This property is required. List<bool>
WeeksOfMonths This property is required. List<int>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
CustomActionTimeoutInMins This property is required. int
DaysOfWeeks This property is required. []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek
Days during the week when maintenance should be performed.
HoursOfDays This property is required. []int
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled This property is required. bool
IsMonthlyPatchingEnabled This property is required. bool
LeadTimeInWeeks This property is required. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months This property is required. []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth
Months during the year when maintenance should be performed.
PatchingMode This property is required. string
Preference This property is required. string
The maintenance window scheduling preference.
SkipRus This property is required. []bool
WeeksOfMonths This property is required. []int
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins This property is required. Integer
daysOfWeeks This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek>
Days during the week when maintenance should be performed.
hoursOfDays This property is required. List<Integer>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled This property is required. Boolean
isMonthlyPatchingEnabled This property is required. Boolean
leadTimeInWeeks This property is required. Integer
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth>
Months during the year when maintenance should be performed.
patchingMode This property is required. String
preference This property is required. String
The maintenance window scheduling preference.
skipRus This property is required. List<Boolean>
weeksOfMonths This property is required. List<Integer>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins This property is required. number
daysOfWeeks This property is required. GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek[]
Days during the week when maintenance should be performed.
hoursOfDays This property is required. number[]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled This property is required. boolean
isMonthlyPatchingEnabled This property is required. boolean
leadTimeInWeeks This property is required. number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth[]
Months during the year when maintenance should be performed.
patchingMode This property is required. string
preference This property is required. string
The maintenance window scheduling preference.
skipRus This property is required. boolean[]
weeksOfMonths This property is required. number[]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
custom_action_timeout_in_mins This property is required. int
days_of_weeks This property is required. Sequence[database.GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek]
Days during the week when maintenance should be performed.
hours_of_days This property is required. Sequence[int]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
is_custom_action_timeout_enabled This property is required. bool
is_monthly_patching_enabled This property is required. bool
lead_time_in_weeks This property is required. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. Sequence[database.GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth]
Months during the year when maintenance should be performed.
patching_mode This property is required. str
preference This property is required. str
The maintenance window scheduling preference.
skip_rus This property is required. Sequence[bool]
weeks_of_months This property is required. Sequence[int]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins This property is required. Number
daysOfWeeks This property is required. List<Property Map>
Days during the week when maintenance should be performed.
hoursOfDays This property is required. List<Number>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled This property is required. Boolean
isMonthlyPatchingEnabled This property is required. Boolean
leadTimeInWeeks This property is required. Number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. List<Property Map>
Months during the year when maintenance should be performed.
patchingMode This property is required. String
preference This property is required. String
The maintenance window scheduling preference.
skipRus This property is required. List<Boolean>
weeksOfMonths This property is required. List<Number>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail

CustomActionTimeoutInMins This property is required. int
DaysOfWeeks This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>
Days during the week when maintenance should be performed.
HoursOfDays This property is required. List<int>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled This property is required. bool
IsMonthlyPatchingEnabled This property is required. bool
LeadTimeInWeeks This property is required. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth>
Months during the year when maintenance should be performed.
PatchingMode This property is required. string
Preference This property is required. string
The maintenance window scheduling preference.
SkipRus This property is required. List<bool>
WeeksOfMonths This property is required. List<int>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
CustomActionTimeoutInMins This property is required. int
DaysOfWeeks This property is required. []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek
Days during the week when maintenance should be performed.
HoursOfDays This property is required. []int
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled This property is required. bool
IsMonthlyPatchingEnabled This property is required. bool
LeadTimeInWeeks This property is required. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months This property is required. []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth
Months during the year when maintenance should be performed.
PatchingMode This property is required. string
Preference This property is required. string
The maintenance window scheduling preference.
SkipRus This property is required. []bool
WeeksOfMonths This property is required. []int
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins This property is required. Integer
daysOfWeeks This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>
Days during the week when maintenance should be performed.
hoursOfDays This property is required. List<Integer>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled This property is required. Boolean
isMonthlyPatchingEnabled This property is required. Boolean
leadTimeInWeeks This property is required. Integer
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth>
Months during the year when maintenance should be performed.
patchingMode This property is required. String
preference This property is required. String
The maintenance window scheduling preference.
skipRus This property is required. List<Boolean>
weeksOfMonths This property is required. List<Integer>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins This property is required. number
daysOfWeeks This property is required. GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek[]
Days during the week when maintenance should be performed.
hoursOfDays This property is required. number[]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled This property is required. boolean
isMonthlyPatchingEnabled This property is required. boolean
leadTimeInWeeks This property is required. number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth[]
Months during the year when maintenance should be performed.
patchingMode This property is required. string
preference This property is required. string
The maintenance window scheduling preference.
skipRus This property is required. boolean[]
weeksOfMonths This property is required. number[]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
custom_action_timeout_in_mins This property is required. int
days_of_weeks This property is required. Sequence[database.GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek]
Days during the week when maintenance should be performed.
hours_of_days This property is required. Sequence[int]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
is_custom_action_timeout_enabled This property is required. bool
is_monthly_patching_enabled This property is required. bool
lead_time_in_weeks This property is required. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. Sequence[database.GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth]
Months during the year when maintenance should be performed.
patching_mode This property is required. str
preference This property is required. str
The maintenance window scheduling preference.
skip_rus This property is required. Sequence[bool]
weeks_of_months This property is required. Sequence[int]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins This property is required. Number
daysOfWeeks This property is required. List<Property Map>
Days during the week when maintenance should be performed.
hoursOfDays This property is required. List<Number>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled This property is required. Boolean
isMonthlyPatchingEnabled This property is required. Boolean
leadTimeInWeeks This property is required. Number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months This property is required. List<Property Map>
Months during the year when maintenance should be performed.
patchingMode This property is required. String
preference This property is required. String
The maintenance window scheduling preference.
skipRus This property is required. List<Boolean>
weeksOfMonths This property is required. List<Number>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousVmClustersFilter

Name This property is required. string
Name of the month of the year.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Name of the month of the year.
Values This property is required. []string
Regex bool
name This property is required. String
Name of the month of the year.
values This property is required. List<String>
regex Boolean
name This property is required. string
Name of the month of the year.
values This property is required. string[]
regex boolean
name This property is required. str
Name of the month of the year.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Name of the month of the year.
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi