1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousVmClusters
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi

oci.Database.getAutonomousVmClusters

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 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

    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 = @var.Compartment_id,
            DisplayName = @var.Autonomous_vm_cluster_display_name,
            ExadataInfrastructureId = oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id,
            State = @var.Autonomous_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.GetAutonomousVmClusters(ctx, &database.GetAutonomousVmClustersArgs{
    			CompartmentId:           _var.Compartment_id,
    			DisplayName:             pulumi.StringRef(_var.Autonomous_vm_cluster_display_name),
    			ExadataInfrastructureId: pulumi.StringRef(oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id),
    			State:                   pulumi.StringRef(_var.Autonomous_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.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(var_.compartment_id())
                .displayName(var_.autonomous_vm_cluster_display_name())
                .exadataInfrastructureId(oci_database_exadata_infrastructure.test_exadata_infrastructure().id())
                .state(var_.autonomous_vm_cluster_state())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_vm_clusters = oci.Database.get_autonomous_vm_clusters(compartment_id=var["compartment_id"],
        display_name=var["autonomous_vm_cluster_display_name"],
        exadata_infrastructure_id=oci_database_exadata_infrastructure["test_exadata_infrastructure"]["id"],
        state=var["autonomous_vm_cluster_state"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAutonomousVmClusters = oci.Database.getAutonomousVmClusters({
        compartmentId: _var.compartment_id,
        displayName: _var.autonomous_vm_cluster_display_name,
        exadataInfrastructureId: oci_database_exadata_infrastructure.test_exadata_infrastructure.id,
        state: _var.autonomous_vm_cluster_state,
    });
    
    variables:
      testAutonomousVmClusters:
        fn::invoke:
          Function: oci:Database:getAutonomousVmClusters
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.autonomous_vm_cluster_display_name}
            exadataInfrastructureId: ${oci_database_exadata_infrastructure.test_exadata_infrastructure.id}
            state: ${var.autonomous_vm_cluster_state}
    

    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>
    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]
    func GetAutonomousVmClusters(ctx *Context, args *GetAutonomousVmClustersArgs, opts ...InvokeOption) (*GetAutonomousVmClustersResult, error)
    func GetAutonomousVmClustersOutput(ctx *Context, args *GetAutonomousVmClustersOutputArgs, opts ...InvokeOption) GetAutonomousVmClustersResultOutput

    > 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)
    }
    public static CompletableFuture<GetAutonomousVmClustersResult> getAutonomousVmClusters(GetAutonomousVmClustersArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Database/getAutonomousVmClusters:getAutonomousVmClusters
      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<GetAutonomousVmClustersFilter>
    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 []GetAutonomousVmClustersFilter
    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<GetAutonomousVmClustersFilter>
    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 GetAutonomousVmClustersFilter[]
    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 GetAutonomousVmClustersFilter]
    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.

    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 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 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 double
    AutonomousDataStorageSizeInTbs double

    The data disk group size allocated for Autonomous Databases, in TBs.

    AvailableAutonomousDataStorageSizeInTbs double

    The data disk group size available for Autonomous Databases, in TBs.

    AvailableContainerDatabases int

    The number of Autonomous Container Databases that can be created with the currently available local storage.

    AvailableCpus int

    The numnber of CPU cores available.

    AvailableDataStorageSizeInTbs double

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    CompartmentId string

    The compartment OCID.

    ComputeModel string

    The compute model of the Autonomous VM Cluster.

    CpuCoreCountPerNode int

    The number of CPU cores enabled per VM cluster node.

    CpuPercentage double
    CpusEnabled int

    The number of enabled CPU cores.

    DataStorageSizeInGb double

    The total data storage allocated in GBs.

    DataStorageSizeInTbs double

    The total data storage allocated in TBs

    DbNodeStorageSizeInGbs int

    The local node storage allocated in GBs.

    DbServers List<string>

    The list of OCIDs of the Db servers.

    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"}

    Id string

    The OCID of the Autonomous VM cluster.

    IsLocalBackupEnabled 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 bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    LastMaintenanceRunId string

    The OCID of the last maintenance run.

    LicenseModel string

    The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    MaintenanceWindowDetails List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail>
    MaintenanceWindows List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow>

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    MemoryPerOracleComputeUnitInGbs int

    The amount of memory (in GBs) to be enabled per OCPU or ECPU.

    MemorySizeInGbs int

    The memory allocated in GBs.

    NextMaintenanceRunId string

    The OCID of the next maintenance run.

    NodeCount int

    The number of nodes in the Autonomous VM Cluster.

    NonProvisionableAutonomousContainerDatabases int
    OcpusEnabled double

    The number of enabled OCPU cores.

    ProvisionedAutonomousContainerDatabases int
    ProvisionedCpus double
    ReclaimableCpus 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 double
    ScanListenerPortNonTls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    ScanListenerPortTls int

    The SCAN Listener TLS port number. Default value is 2484.

    State string

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

    TimeCreated string

    The date and time that the Autonomous VM cluster was created.

    TimeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    TimeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    TimeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    TotalAutonomousDataStorageInTbs double
    TotalContainerDatabases int

    The total number of Autonomous Container Databases that can be created.

    VmClusterNetworkId string

    The OCID of the VM cluster network.

    AutonomousDataStoragePercentage float64
    AutonomousDataStorageSizeInTbs float64

    The data disk group size allocated for Autonomous Databases, in TBs.

    AvailableAutonomousDataStorageSizeInTbs float64

    The data disk group size available for Autonomous Databases, in TBs.

    AvailableContainerDatabases int

    The number of Autonomous Container Databases that can be created with the currently available local storage.

    AvailableCpus int

    The numnber of CPU cores available.

    AvailableDataStorageSizeInTbs float64

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    CompartmentId string

    The compartment OCID.

    ComputeModel string

    The compute model of the Autonomous VM Cluster.

    CpuCoreCountPerNode int

    The number of CPU cores enabled per VM cluster node.

    CpuPercentage float64
    CpusEnabled int

    The number of enabled CPU cores.

    DataStorageSizeInGb float64

    The total data storage allocated in GBs.

    DataStorageSizeInTbs float64

    The total data storage allocated in TBs

    DbNodeStorageSizeInGbs int

    The local node storage allocated in GBs.

    DbServers []string

    The list of OCIDs of the Db servers.

    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"}

    Id string

    The OCID of the Autonomous VM cluster.

    IsLocalBackupEnabled 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 bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    LastMaintenanceRunId string

    The OCID of the last maintenance run.

    LicenseModel string

    The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    MaintenanceWindowDetails []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail
    MaintenanceWindows []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    MemoryPerOracleComputeUnitInGbs int

    The amount of memory (in GBs) to be enabled per OCPU or ECPU.

    MemorySizeInGbs int

    The memory allocated in GBs.

    NextMaintenanceRunId string

    The OCID of the next maintenance run.

    NodeCount int

    The number of nodes in the Autonomous VM Cluster.

    NonProvisionableAutonomousContainerDatabases int
    OcpusEnabled float64

    The number of enabled OCPU cores.

    ProvisionedAutonomousContainerDatabases int
    ProvisionedCpus float64
    ReclaimableCpus 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 float64
    ScanListenerPortNonTls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    ScanListenerPortTls int

    The SCAN Listener TLS port number. Default value is 2484.

    State string

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

    TimeCreated string

    The date and time that the Autonomous VM cluster was created.

    TimeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    TimeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    TimeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    TotalAutonomousDataStorageInTbs float64
    TotalContainerDatabases int

    The total number of Autonomous Container Databases that can be created.

    VmClusterNetworkId string

    The OCID of the VM cluster network.

    autonomousDataStoragePercentage Double
    autonomousDataStorageSizeInTbs Double

    The data disk group size allocated for Autonomous Databases, in TBs.

    availableAutonomousDataStorageSizeInTbs Double

    The data disk group size available for Autonomous Databases, in TBs.

    availableContainerDatabases Integer

    The number of Autonomous Container Databases that can be created with the currently available local storage.

    availableCpus Integer

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs Double

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartmentId String

    The compartment OCID.

    computeModel String

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode Integer

    The number of CPU cores enabled per VM cluster node.

    cpuPercentage Double
    cpusEnabled Integer

    The number of enabled CPU cores.

    dataStorageSizeInGb Double

    The total data storage allocated in GBs.

    dataStorageSizeInTbs Double

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs Integer

    The local node storage allocated in GBs.

    dbServers List<String>

    The list of OCIDs of the Db servers.

    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"}

    id String

    The OCID of the Autonomous VM cluster.

    isLocalBackupEnabled 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 Boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    lastMaintenanceRunId String

    The OCID of the last maintenance run.

    licenseModel String

    The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    maintenanceWindowDetails List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail>
    maintenanceWindows List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow>

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    memoryPerOracleComputeUnitInGbs Integer

    The amount of memory (in GBs) to be enabled per OCPU or ECPU.

    memorySizeInGbs Integer

    The memory allocated in GBs.

    nextMaintenanceRunId String

    The OCID of the next maintenance run.

    nodeCount Integer

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases Integer
    ocpusEnabled Double

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases Integer
    provisionedCpus Double
    reclaimableCpus 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 Double
    scanListenerPortNonTls Integer

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls Integer

    The SCAN Listener TLS port number. Default value is 2484.

    state String

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

    timeCreated String

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires String

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires String

    The date and time of ORDS certificate expiration.

    timeZone String

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalAutonomousDataStorageInTbs Double
    totalContainerDatabases Integer

    The total number of Autonomous Container Databases that can be created.

    vmClusterNetworkId String

    The OCID of the VM cluster network.

    autonomousDataStoragePercentage number
    autonomousDataStorageSizeInTbs number

    The data disk group size allocated for Autonomous Databases, in TBs.

    availableAutonomousDataStorageSizeInTbs number

    The data disk group size available for Autonomous Databases, in TBs.

    availableContainerDatabases number

    The number of Autonomous Container Databases that can be created with the currently available local storage.

    availableCpus number

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs number

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartmentId string

    The compartment OCID.

    computeModel string

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode number

    The number of CPU cores enabled per VM cluster node.

    cpuPercentage number
    cpusEnabled number

    The number of enabled CPU cores.

    dataStorageSizeInGb number

    The total data storage allocated in GBs.

    dataStorageSizeInTbs number

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs number

    The local node storage allocated in GBs.

    dbServers string[]

    The list of OCIDs of the Db servers.

    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"}

    id string

    The OCID of the Autonomous VM cluster.

    isLocalBackupEnabled 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 boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    lastMaintenanceRunId string

    The OCID of the last maintenance run.

    licenseModel string

    The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.

    lifecycleDetails string

    Additional information about the current lifecycle state.

    maintenanceWindowDetails GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail[]
    maintenanceWindows GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow[]

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    memoryPerOracleComputeUnitInGbs number

    The amount of memory (in GBs) to be enabled per OCPU or ECPU.

    memorySizeInGbs number

    The memory allocated in GBs.

    nextMaintenanceRunId string

    The OCID of the next maintenance run.

    nodeCount number

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases number
    ocpusEnabled number

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases number
    provisionedCpus number
    reclaimableCpus 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 number
    scanListenerPortNonTls number

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls number

    The SCAN Listener TLS port number. Default value is 2484.

    state string

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

    timeCreated string

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    timeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalAutonomousDataStorageInTbs number
    totalContainerDatabases number

    The total number of Autonomous Container Databases that can be created.

    vmClusterNetworkId string

    The OCID of the VM cluster network.

    autonomous_data_storage_percentage float
    autonomous_data_storage_size_in_tbs float

    The data disk group size allocated for Autonomous Databases, in TBs.

    available_autonomous_data_storage_size_in_tbs float

    The data disk group size available for Autonomous Databases, in TBs.

    available_container_databases int

    The number of Autonomous Container Databases that can be created with the currently available local storage.

    available_cpus int

    The numnber of CPU cores available.

    available_data_storage_size_in_tbs float

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartment_id str

    The compartment OCID.

    compute_model str

    The compute model of the Autonomous VM Cluster.

    cpu_core_count_per_node int

    The number of CPU cores enabled per VM cluster node.

    cpu_percentage float
    cpus_enabled int

    The number of enabled CPU cores.

    data_storage_size_in_gb float

    The total data storage allocated in GBs.

    data_storage_size_in_tbs float

    The total data storage allocated in TBs

    db_node_storage_size_in_gbs int

    The local node storage allocated in GBs.

    db_servers Sequence[str]

    The list of OCIDs of the Db servers.

    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"}

    id str

    The OCID of the Autonomous VM cluster.

    is_local_backup_enabled 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 bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    last_maintenance_run_id str

    The OCID of the last maintenance run.

    license_model str

    The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.

    lifecycle_details str

    Additional information about the current lifecycle state.

    maintenance_window_details GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail]
    maintenance_windows GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow]

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    memory_per_oracle_compute_unit_in_gbs int

    The amount of memory (in GBs) to be enabled per OCPU or ECPU.

    memory_size_in_gbs int

    The memory allocated in GBs.

    next_maintenance_run_id str

    The OCID of the next maintenance run.

    node_count int

    The number of nodes in the Autonomous VM Cluster.

    non_provisionable_autonomous_container_databases int
    ocpus_enabled float

    The number of enabled OCPU cores.

    provisioned_autonomous_container_databases int
    provisioned_cpus float
    reclaimable_cpus 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 float
    scan_listener_port_non_tls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    scan_listener_port_tls int

    The SCAN Listener TLS port number. Default value is 2484.

    state str

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

    time_created str

    The date and time that the Autonomous VM cluster was created.

    time_database_ssl_certificate_expires str

    The date and time of Database SSL certificate expiration.

    time_ords_certificate_expires str

    The date and time of ORDS certificate expiration.

    time_zone str

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    total_autonomous_data_storage_in_tbs float
    total_container_databases int

    The total number of Autonomous Container Databases that can be created.

    vm_cluster_network_id str

    The OCID of the VM cluster network.

    autonomousDataStoragePercentage Number
    autonomousDataStorageSizeInTbs Number

    The data disk group size allocated for Autonomous Databases, in TBs.

    availableAutonomousDataStorageSizeInTbs Number

    The data disk group size available for Autonomous Databases, in TBs.

    availableContainerDatabases Number

    The number of Autonomous Container Databases that can be created with the currently available local storage.

    availableCpus Number

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs Number

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartmentId String

    The compartment OCID.

    computeModel String

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode Number

    The number of CPU cores enabled per VM cluster node.

    cpuPercentage Number
    cpusEnabled Number

    The number of enabled CPU cores.

    dataStorageSizeInGb Number

    The total data storage allocated in GBs.

    dataStorageSizeInTbs Number

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs Number

    The local node storage allocated in GBs.

    dbServers List<String>

    The list of OCIDs of the Db servers.

    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"}

    id String

    The OCID of the Autonomous VM cluster.

    isLocalBackupEnabled 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 Boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    lastMaintenanceRunId String

    The OCID of the last maintenance run.

    licenseModel String

    The Oracle license model that applies to the Autonomous VM cluster. The default is LICENSE_INCLUDED.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    maintenanceWindowDetails List<Property Map>
    maintenanceWindows List<Property Map>

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    memoryPerOracleComputeUnitInGbs Number

    The amount of memory (in GBs) to be enabled per OCPU or ECPU.

    memorySizeInGbs Number

    The memory allocated in GBs.

    nextMaintenanceRunId String

    The OCID of the next maintenance run.

    nodeCount Number

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases Number
    ocpusEnabled Number

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases Number
    provisionedCpus Number
    reclaimableCpus 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 Number
    scanListenerPortNonTls Number

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls Number

    The SCAN Listener TLS port number. Default value is 2484.

    state String

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

    timeCreated String

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires String

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires String

    The date and time of ORDS certificate expiration.

    timeZone String

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalAutonomousDataStorageInTbs Number
    totalContainerDatabases Number

    The total number of Autonomous Container Databases that can be created.

    vmClusterNetworkId String

    The OCID of the VM cluster network.

    GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindow

    CustomActionTimeoutInMins int
    DaysOfWeeks List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek>

    Days during the week when maintenance should be performed.

    HoursOfDays 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 bool
    IsMonthlyPatchingEnabled bool
    LeadTimeInWeeks 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 List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth>

    Months during the year when maintenance should be performed.

    PatchingMode string
    Preference string

    The maintenance window scheduling preference.

    WeeksOfMonths 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 int
    DaysOfWeeks []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek

    Days during the week when maintenance should be performed.

    HoursOfDays []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 bool
    IsMonthlyPatchingEnabled bool
    LeadTimeInWeeks 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 []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth

    Months during the year when maintenance should be performed.

    PatchingMode string
    Preference string

    The maintenance window scheduling preference.

    WeeksOfMonths []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 Integer
    daysOfWeeks List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek>

    Days during the week when maintenance should be performed.

    hoursOfDays 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 Boolean
    isMonthlyPatchingEnabled Boolean
    leadTimeInWeeks 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 List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth>

    Months during the year when maintenance should be performed.

    patchingMode String
    preference String

    The maintenance window scheduling preference.

    weeksOfMonths 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 number
    daysOfWeeks GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek[]

    Days during the week when maintenance should be performed.

    hoursOfDays 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 boolean
    isMonthlyPatchingEnabled boolean
    leadTimeInWeeks 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 GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth[]

    Months during the year when maintenance should be performed.

    patchingMode string
    preference string

    The maintenance window scheduling preference.

    weeksOfMonths 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 int
    days_of_weeks GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDaysOfWeek]

    Days during the week when maintenance should be performed.

    hours_of_days 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 bool
    is_monthly_patching_enabled bool
    lead_time_in_weeks 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 GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth]

    Months during the year when maintenance should be performed.

    patching_mode str
    preference str

    The maintenance window scheduling preference.

    weeks_of_months 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 Number
    daysOfWeeks List<Property Map>

    Days during the week when maintenance should be performed.

    hoursOfDays 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 Boolean
    isMonthlyPatchingEnabled Boolean
    leadTimeInWeeks 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 List<Property Map>

    Months during the year when maintenance should be performed.

    patchingMode String
    preference String

    The maintenance window scheduling preference.

    weeksOfMonths 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 string

    Name of the month of the year.

    Name string

    Name of the month of the year.

    name String

    Name of the month of the year.

    name string

    Name of the month of the year.

    name str

    Name of the month of the year.

    name String

    Name of the month of the year.

    GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetail

    CustomActionTimeoutInMins int
    DaysOfWeeks List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>

    Days during the week when maintenance should be performed.

    HoursOfDays 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 bool
    IsMonthlyPatchingEnabled bool
    LeadTimeInWeeks 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 List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth>

    Months during the year when maintenance should be performed.

    PatchingMode string
    Preference string

    The maintenance window scheduling preference.

    WeeksOfMonths 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 int
    DaysOfWeeks []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek

    Days during the week when maintenance should be performed.

    HoursOfDays []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 bool
    IsMonthlyPatchingEnabled bool
    LeadTimeInWeeks 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 []GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth

    Months during the year when maintenance should be performed.

    PatchingMode string
    Preference string

    The maintenance window scheduling preference.

    WeeksOfMonths []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 Integer
    daysOfWeeks List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>

    Days during the week when maintenance should be performed.

    hoursOfDays 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 Boolean
    isMonthlyPatchingEnabled Boolean
    leadTimeInWeeks 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 List<GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth>

    Months during the year when maintenance should be performed.

    patchingMode String
    preference String

    The maintenance window scheduling preference.

    weeksOfMonths 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 number
    daysOfWeeks GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek[]

    Days during the week when maintenance should be performed.

    hoursOfDays 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 boolean
    isMonthlyPatchingEnabled boolean
    leadTimeInWeeks 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 GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth[]

    Months during the year when maintenance should be performed.

    patchingMode string
    preference string

    The maintenance window scheduling preference.

    weeksOfMonths 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 int
    days_of_weeks GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek]

    Days during the week when maintenance should be performed.

    hours_of_days 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 bool
    is_monthly_patching_enabled bool
    lead_time_in_weeks 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 GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth]

    Months during the year when maintenance should be performed.

    patching_mode str
    preference str

    The maintenance window scheduling preference.

    weeks_of_months 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 Number
    daysOfWeeks List<Property Map>

    Days during the week when maintenance should be performed.

    hoursOfDays 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 Boolean
    isMonthlyPatchingEnabled Boolean
    leadTimeInWeeks 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 List<Property Map>

    Months during the year when maintenance should be performed.

    patchingMode String
    preference String

    The maintenance window scheduling preference.

    weeksOfMonths 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 string

    Name of the month of the year.

    Name string

    Name of the month of the year.

    name String

    Name of the month of the year.

    name string

    Name of the month of the year.

    name str

    Name of the month of the year.

    name String

    Name of the month of the year.

    GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowDetailMonth

    Name string

    Name of the month of the year.

    Name string

    Name of the month of the year.

    name String

    Name of the month of the year.

    name string

    Name of the month of the year.

    name str

    Name of the month of the year.

    name String

    Name of the month of the year.

    GetAutonomousVmClustersAutonomousVmClusterMaintenanceWindowMonth

    Name string

    Name of the month of the year.

    Name string

    Name of the month of the year.

    name String

    Name of the month of the year.

    name string

    Name of the month of the year.

    name str

    Name of the month of the year.

    name String

    Name of the month of the year.

    GetAutonomousVmClustersFilter

    Name string

    Name of the month of the year.

    Values List<string>
    Regex bool
    Name string

    Name of the month of the year.

    Values []string
    Regex bool
    name String

    Name of the month of the year.

    values List<String>
    regex Boolean
    name string

    Name of the month of the year.

    values string[]
    regex boolean
    name str

    Name of the month of the year.

    values Sequence[str]
    regex bool
    name String

    Name of the month of the year.

    values 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.

    oci logo
    Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi