Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi
oci.Database.getCloudAutonomousVmClusters
Explore with Pulumi AI
This data source provides the list of Cloud Autonomous Vm Clusters in Oracle Cloud Infrastructure Database service.
Lists Autonomous Exadata VM clusters in the Oracle cloud. For Exadata Cloud@Customer systems, see ListAutonomousVmClusters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCloudAutonomousVmClusters = oci.Database.getCloudAutonomousVmClusters({
compartmentId: compartmentId,
availabilityDomain: cloudAutonomousVmClusterAvailabilityDomain,
cloudExadataInfrastructureId: testCloudExadataInfrastructure.id,
displayName: cloudAutonomousVmClusterDisplayName,
state: cloudAutonomousVmClusterState,
});
import pulumi
import pulumi_oci as oci
test_cloud_autonomous_vm_clusters = oci.Database.get_cloud_autonomous_vm_clusters(compartment_id=compartment_id,
availability_domain=cloud_autonomous_vm_cluster_availability_domain,
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
display_name=cloud_autonomous_vm_cluster_display_name,
state=cloud_autonomous_vm_cluster_state)
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.GetCloudAutonomousVmClusters(ctx, &database.GetCloudAutonomousVmClustersArgs{
CompartmentId: compartmentId,
AvailabilityDomain: pulumi.StringRef(cloudAutonomousVmClusterAvailabilityDomain),
CloudExadataInfrastructureId: pulumi.StringRef(testCloudExadataInfrastructure.Id),
DisplayName: pulumi.StringRef(cloudAutonomousVmClusterDisplayName),
State: pulumi.StringRef(cloudAutonomousVmClusterState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testCloudAutonomousVmClusters = Oci.Database.GetCloudAutonomousVmClusters.Invoke(new()
{
CompartmentId = compartmentId,
AvailabilityDomain = cloudAutonomousVmClusterAvailabilityDomain,
CloudExadataInfrastructureId = testCloudExadataInfrastructure.Id,
DisplayName = cloudAutonomousVmClusterDisplayName,
State = cloudAutonomousVmClusterState,
});
});
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.GetCloudAutonomousVmClustersArgs;
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 testCloudAutonomousVmClusters = DatabaseFunctions.getCloudAutonomousVmClusters(GetCloudAutonomousVmClustersArgs.builder()
.compartmentId(compartmentId)
.availabilityDomain(cloudAutonomousVmClusterAvailabilityDomain)
.cloudExadataInfrastructureId(testCloudExadataInfrastructure.id())
.displayName(cloudAutonomousVmClusterDisplayName)
.state(cloudAutonomousVmClusterState)
.build());
}
}
variables:
testCloudAutonomousVmClusters:
fn::invoke:
function: oci:Database:getCloudAutonomousVmClusters
arguments:
compartmentId: ${compartmentId}
availabilityDomain: ${cloudAutonomousVmClusterAvailabilityDomain}
cloudExadataInfrastructureId: ${testCloudExadataInfrastructure.id}
displayName: ${cloudAutonomousVmClusterDisplayName}
state: ${cloudAutonomousVmClusterState}
Using getCloudAutonomousVmClusters
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 getCloudAutonomousVmClusters(args: GetCloudAutonomousVmClustersArgs, opts?: InvokeOptions): Promise<GetCloudAutonomousVmClustersResult>
function getCloudAutonomousVmClustersOutput(args: GetCloudAutonomousVmClustersOutputArgs, opts?: InvokeOptions): Output<GetCloudAutonomousVmClustersResult>
def get_cloud_autonomous_vm_clusters(availability_domain: Optional[str] = None,
cloud_exadata_infrastructure_id: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_database.GetCloudAutonomousVmClustersFilter]] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCloudAutonomousVmClustersResult
def get_cloud_autonomous_vm_clusters_output(availability_domain: Optional[pulumi.Input[str]] = None,
cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetCloudAutonomousVmClustersFilterArgs]]]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCloudAutonomousVmClustersResult]
func GetCloudAutonomousVmClusters(ctx *Context, args *GetCloudAutonomousVmClustersArgs, opts ...InvokeOption) (*GetCloudAutonomousVmClustersResult, error)
func GetCloudAutonomousVmClustersOutput(ctx *Context, args *GetCloudAutonomousVmClustersOutputArgs, opts ...InvokeOption) GetCloudAutonomousVmClustersResultOutput
> Note: This function is named GetCloudAutonomousVmClusters
in the Go SDK.
public static class GetCloudAutonomousVmClusters
{
public static Task<GetCloudAutonomousVmClustersResult> InvokeAsync(GetCloudAutonomousVmClustersArgs args, InvokeOptions? opts = null)
public static Output<GetCloudAutonomousVmClustersResult> Invoke(GetCloudAutonomousVmClustersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCloudAutonomousVmClustersResult> getCloudAutonomousVmClusters(GetCloudAutonomousVmClustersArgs args, InvokeOptions options)
public static Output<GetCloudAutonomousVmClustersResult> getCloudAutonomousVmClusters(GetCloudAutonomousVmClustersArgs args, InvokeOptions options)
fn::invoke:
function: oci:Database/getCloudAutonomousVmClusters:getCloudAutonomousVmClusters
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id This property is required. string - The compartment OCID.
- Availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- Cloud
Exadata stringInfrastructure Id - If provided, filters the results for the specified cloud Exadata infrastructure.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
Changes to this property will trigger replacement.
Cloud Autonomous Vm Clusters Filter> - State string
- A filter to return only resources that match the given lifecycle state exactly.
- Compartment
Id This property is required. string - The compartment OCID.
- Availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- Cloud
Exadata stringInfrastructure Id - If provided, filters the results for the specified cloud Exadata infrastructure.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
Changes to this property will trigger replacement.
Cloud Autonomous Vm Clusters Filter - State string
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id This property is required. String - The compartment OCID.
- availability
Domain String - A filter to return only resources that match the given availability domain exactly.
- cloud
Exadata StringInfrastructure Id - If provided, filters the results for the specified cloud Exadata infrastructure.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Changes to this property will trigger replacement.
Cloud Autonomous Vm Clusters Filter> - state String
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id This property is required. string - The compartment OCID.
- availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- cloud
Exadata stringInfrastructure Id - If provided, filters the results for the specified cloud Exadata infrastructure.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Changes to this property will trigger replacement.
Cloud Autonomous Vm Clusters Filter[] - 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.
- availability_
domain str - A filter to return only resources that match the given availability domain exactly.
- cloud_
exadata_ strinfrastructure_ id - If provided, filters the results for the specified cloud Exadata infrastructure.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Changes to this property will trigger replacement.
Get Cloud Autonomous Vm Clusters Filter] - state str
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id This property is required. String - The compartment OCID.
- availability
Domain String - A filter to return only resources that match the given availability domain exactly.
- cloud
Exadata StringInfrastructure Id - If provided, filters the results for the specified cloud Exadata infrastructure.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Changes to this property will trigger replacement.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
getCloudAutonomousVmClusters Result
The following output properties are available:
- Cloud
Autonomous List<GetVm Clusters Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster> - The list of cloud_autonomous_vm_clusters.
- Compartment
Id string - The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- Display
Name string - The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- Filters
List<Get
Cloud Autonomous Vm Clusters Filter> - State string
- The current state of the cloud Autonomous VM cluster.
- Cloud
Autonomous []GetVm Clusters Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster - The list of cloud_autonomous_vm_clusters.
- Compartment
Id string - The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- Display
Name string - The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- Filters
[]Get
Cloud Autonomous Vm Clusters Filter - State string
- The current state of the cloud Autonomous VM cluster.
- cloud
Autonomous List<GetVm Clusters Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster> - The list of cloud_autonomous_vm_clusters.
- compartment
Id String - The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- availability
Domain String - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- display
Name String - The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- filters
List<Get
Cloud Autonomous Vm Clusters Filter> - state String
- The current state of the cloud Autonomous VM cluster.
- cloud
Autonomous GetVm Clusters Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster[] - The list of cloud_autonomous_vm_clusters.
- compartment
Id string - The OCID of the compartment.
- id string
- The provider-assigned unique ID for this managed resource.
- availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- display
Name string - The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- filters
Get
Cloud Autonomous Vm Clusters Filter[] - state string
- The current state of the cloud Autonomous VM cluster.
- cloud_
autonomous_ Sequence[database.vm_ clusters Get Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster] - The list of cloud_autonomous_vm_clusters.
- compartment_
id str - The OCID of the compartment.
- id str
- The provider-assigned unique ID for this managed resource.
- availability_
domain str - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- cloud_
exadata_ strinfrastructure_ id - The OCID of the cloud Exadata infrastructure.
- display_
name str - The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- filters
Sequence[database.
Get Cloud Autonomous Vm Clusters Filter] - state str
- The current state of the cloud Autonomous VM cluster.
- cloud
Autonomous List<Property Map>Vm Clusters - The list of cloud_autonomous_vm_clusters.
- compartment
Id String - The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- availability
Domain String - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- display
Name String - The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- filters List<Property Map>
- state String
- The current state of the cloud Autonomous VM cluster.
Supporting Types
GetCloudAutonomousVmClustersCloudAutonomousVmCluster
- Autonomous
Data Storage Percentage This property is required. double - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- Autonomous
Data Storage Size In Tbs This property is required. double - The data disk group size allocated for Autonomous Databases, in TBs.
- Availability
Domain This property is required. string - A filter to return only resources that match the given availability domain exactly.
- Available
Autonomous Data Storage Size In Tbs This property is required. double - 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. double - CPU cores available for allocation to Autonomous Databases.
- Cloud
Exadata Infrastructure Id This property is required. string - If provided, filters the results for the specified cloud Exadata infrastructure.
- Cluster
Time Zone This property is required. string - The time zone of the Cloud Autonomous VM Cluster.
- Compartment
Id This property is required. string - The compartment OCID.
- Compute
Model This property is required. string - The compute model of the Cloud 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 This property is required. int - The number of CPU cores on the cloud Autonomous VM cluster.
- 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. double - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- Data
Storage Size In Gb This property is required. double - The total data storage allocated, in gigabytes (GB).
- Data
Storage Size In Tbs This property is required. double - The total data storage allocated, in terabytes (TB).
- Db
Node Storage Size In Gbs This property is required. int - The local node storage allocated in GBs.
- Db
Servers This property is required. List<string> - The list of OCIDs of the Db servers.
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.
- Description
This property is required. string - User defined description of the cloud Autonomous VM cluster.
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain
This property is required. string - The domain name for the cloud Autonomous VM cluster.
- Exadata
Storage In Tbs Lowest Scaled Value This property is required. double - The lowest value to which exadataStorage (in TBs) can be scaled down.
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"}
- Hostname
This property is required. string - The hostname for the cloud Autonomous VM cluster.
- Id
This property is required. string - The OCID of the Cloud Autonomous VM cluster.
- Is
Mtls Enabled Vm Cluster This property is required. bool - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- Last
Maintenance Run Id This property is required. string - The OCID of the last maintenance run.
- Last
Update History Entry Id This property is required. string - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- License
Model This property is required. string - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to
BRING_YOUR_OWN_LICENSE
. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter. - Lifecycle
Details This property is required. string - Additional information about the current lifecycle state.
- Maintenance
Window Details This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail> - Maintenance
Windows This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window> - 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) 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. string - The OCID of the next maintenance run.
- Node
Count This property is required. int - The number of database servers in the cloud VM cluster.
- Non
Provisionable Autonomous Container Databases This property is required. int - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Nsg
Ids This property is required. List<string> - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Ocpu
Count This property is required. double - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- Ocpus
Lowest Scaled Value This property is required. int - The lowest value to which ocpus can be scaled down.
- Provisionable
Autonomous Container Databases This property is required. int - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- 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. double - The number of CPUs provisioned in an Autonomous VM Cluster.
- Reclaimable
Cpus This property is required. double - 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. double - 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. Default is 1521.
- Scan
Listener Port Tls This property is required. int - The SCAN Listenenr TLS port. Default is 2484.
- Security
Attributes This property is required. Dictionary<string, string> - Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- Shape
This property is required. string - The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- State
This property is required. string - A filter to return only resources that match the given lifecycle state exactly.
- Subnet
Id This property is required. string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- Time
Created This property is required. string - The date and time that the cloud Autonomous VM cluster was created.
- Time
Database Ssl Certificate Expires This property is required. string - The date and time of Database SSL certificate expiration.
- Time
Ords Certificate Expires This property is required. string - The date and time of ORDS certificate expiration.
- Time
Updated This property is required. string - The last date and time that the cloud Autonomous VM cluster was updated.
- Total
Autonomous Data Storage In Tbs This property is required. double - The total data disk group size for Autonomous Databases, in TBs.
- Total
Container Databases This property is required. int - The total number of Autonomous Container Databases that can be created with the allocated local storage.
- Total
Cpus This property is required. double - The total number of CPUs in an Autonomous VM Cluster.
- Autonomous
Data Storage Percentage This property is required. float64 - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- Autonomous
Data Storage Size In Tbs This property is required. float64 - The data disk group size allocated for Autonomous Databases, in TBs.
- Availability
Domain This property is required. string - A filter to return only resources that match the given availability domain exactly.
- Available
Autonomous Data Storage Size In Tbs This property is required. float64 - 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. float64 - CPU cores available for allocation to Autonomous Databases.
- Cloud
Exadata Infrastructure Id This property is required. string - If provided, filters the results for the specified cloud Exadata infrastructure.
- Cluster
Time Zone This property is required. string - The time zone of the Cloud Autonomous VM Cluster.
- Compartment
Id This property is required. string - The compartment OCID.
- Compute
Model This property is required. string - The compute model of the Cloud 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 This property is required. int - The number of CPU cores on the cloud Autonomous VM cluster.
- 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. float64 - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- Data
Storage Size In Gb This property is required. float64 - The total data storage allocated, in gigabytes (GB).
- Data
Storage Size In Tbs This property is required. float64 - The total data storage allocated, in terabytes (TB).
- Db
Node Storage Size In Gbs This property is required. int - The local node storage allocated in GBs.
- Db
Servers This property is required. []string - The list of OCIDs of the Db servers.
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.
- Description
This property is required. string - User defined description of the cloud Autonomous VM cluster.
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain
This property is required. string - The domain name for the cloud Autonomous VM cluster.
- Exadata
Storage In Tbs Lowest Scaled Value This property is required. float64 - The lowest value to which exadataStorage (in TBs) can be scaled down.
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"}
- Hostname
This property is required. string - The hostname for the cloud Autonomous VM cluster.
- Id
This property is required. string - The OCID of the Cloud Autonomous VM cluster.
- Is
Mtls Enabled Vm Cluster This property is required. bool - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- Last
Maintenance Run Id This property is required. string - The OCID of the last maintenance run.
- Last
Update History Entry Id This property is required. string - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- License
Model This property is required. string - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to
BRING_YOUR_OWN_LICENSE
. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter. - Lifecycle
Details This property is required. string - Additional information about the current lifecycle state.
- Maintenance
Window Details This property is required. []GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail - Maintenance
Windows This property is required. []GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window - 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) 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. string - The OCID of the next maintenance run.
- Node
Count This property is required. int - The number of database servers in the cloud VM cluster.
- Non
Provisionable Autonomous Container Databases This property is required. int - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Nsg
Ids This property is required. []string - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Ocpu
Count This property is required. float64 - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- Ocpus
Lowest Scaled Value This property is required. int - The lowest value to which ocpus can be scaled down.
- Provisionable
Autonomous Container Databases This property is required. int - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- 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. float64 - The number of CPUs provisioned in an Autonomous VM Cluster.
- Reclaimable
Cpus This property is required. float64 - 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. float64 - 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. Default is 1521.
- Scan
Listener Port Tls This property is required. int - The SCAN Listenenr TLS port. Default is 2484.
- Security
Attributes This property is required. map[string]string - Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- Shape
This property is required. string - The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- State
This property is required. string - A filter to return only resources that match the given lifecycle state exactly.
- Subnet
Id This property is required. string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- Time
Created This property is required. string - The date and time that the cloud Autonomous VM cluster was created.
- Time
Database Ssl Certificate Expires This property is required. string - The date and time of Database SSL certificate expiration.
- Time
Ords Certificate Expires This property is required. string - The date and time of ORDS certificate expiration.
- Time
Updated This property is required. string - The last date and time that the cloud Autonomous VM cluster was updated.
- Total
Autonomous Data Storage In Tbs This property is required. float64 - The total data disk group size for Autonomous Databases, in TBs.
- Total
Container Databases This property is required. int - The total number of Autonomous Container Databases that can be created with the allocated local storage.
- Total
Cpus This property is required. float64 - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data Storage Percentage This property is required. Double - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous
Data Storage Size In Tbs This property is required. Double - The data disk group size allocated for Autonomous Databases, in TBs.
- availability
Domain This property is required. String - A filter to return only resources that match the given availability domain exactly.
- available
Autonomous Data Storage Size In Tbs This property is required. Double - The data disk group size available for Autonomous Databases, in TBs.
- available
Container Databases This property is required. Integer - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus This property is required. Double - CPU cores available for allocation to Autonomous Databases.
- cloud
Exadata Infrastructure Id This property is required. String - If provided, filters the results for the specified cloud Exadata infrastructure.
- cluster
Time Zone This property is required. String - The time zone of the Cloud Autonomous VM Cluster.
- compartment
Id This property is required. String - The compartment OCID.
- compute
Model This property is required. String - The compute model of the Cloud 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 This property is required. Integer - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Core Count Per Node This property is required. Integer - The number of CPU cores enabled per VM cluster node.
- cpu
Percentage This property is required. Double - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage Size In Gb This property is required. Double - The total data storage allocated, in gigabytes (GB).
- data
Storage Size In Tbs This property is required. Double - The total data storage allocated, in terabytes (TB).
- db
Node Storage Size In Gbs This property is required. Integer - The local node storage allocated in GBs.
- db
Servers This property is required. List<String> - The list of OCIDs of the Db servers.
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.
- description
This property is required. String - User defined description of the cloud Autonomous VM cluster.
- display
Name This property is required. String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain
This property is required. String - The domain name for the cloud Autonomous VM cluster.
- exadata
Storage In Tbs Lowest Scaled Value This property is required. Double - The lowest value to which exadataStorage (in TBs) can be scaled down.
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"}
- hostname
This property is required. String - The hostname for the cloud Autonomous VM cluster.
- id
This property is required. String - The OCID of the Cloud Autonomous VM cluster.
- is
Mtls Enabled Vm Cluster This property is required. Boolean - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- last
Maintenance Run Id This property is required. String - The OCID of the last maintenance run.
- last
Update History Entry Id This property is required. String - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license
Model This property is required. String - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to
BRING_YOUR_OWN_LICENSE
. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter. - lifecycle
Details This property is required. String - Additional information about the current lifecycle state.
- maintenance
Window Details This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail> - maintenance
Windows This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window> - 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. Integer - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Per Oracle Compute Unit In Gbs This property is required. Integer - The amount of memory (in GBs) enabled per OCPU or ECPU.
- memory
Size In Gbs This property is required. Integer - The memory allocated in GBs.
- next
Maintenance Run Id This property is required. String - The OCID of the next maintenance run.
- node
Count This property is required. Integer - The number of database servers in the cloud VM cluster.
- non
Provisionable Autonomous Container Databases This property is required. Integer - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg
Ids This property is required. List<String> - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count This property is required. Double - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest Scaled Value This property is required. Integer - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous Container Databases This property is required. Integer - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous Container Databases This property is required. Integer - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus This property is required. Double - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus This property is required. Double - 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. Double - The number of CPUs reserved in an Autonomous VM Cluster.
- scan
Listener Port Non Tls This property is required. Integer - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener Port Tls This property is required. Integer - The SCAN Listenenr TLS port. Default is 2484.
- security
Attributes This property is required. Map<String,String> - Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape
This property is required. String - The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state
This property is required. String - A filter to return only resources that match the given lifecycle state exactly.
- subnet
Id This property is required. String - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time
Created This property is required. String - The date and time that the cloud Autonomous VM cluster was created.
- time
Database Ssl Certificate Expires This property is required. String - The date and time of Database SSL certificate expiration.
- time
Ords Certificate Expires This property is required. String - The date and time of ORDS certificate expiration.
- time
Updated This property is required. String - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Autonomous Data Storage In Tbs This property is required. Double - The total data disk group size for Autonomous Databases, in TBs.
- total
Container Databases This property is required. Integer - The total number of Autonomous Container Databases that can be created with the allocated local storage.
- total
Cpus This property is required. Double - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data Storage Percentage This property is required. number - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous
Data Storage Size In Tbs This property is required. number - The data disk group size allocated for Autonomous Databases, in TBs.
- availability
Domain This property is required. string - A filter to return only resources that match the given availability domain exactly.
- available
Autonomous Data Storage Size In Tbs This property is required. number - The data disk group size available for Autonomous Databases, in TBs.
- available
Container Databases This property is required. number - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus This property is required. number - CPU cores available for allocation to Autonomous Databases.
- cloud
Exadata Infrastructure Id This property is required. string - If provided, filters the results for the specified cloud Exadata infrastructure.
- cluster
Time Zone This property is required. string - The time zone of the Cloud Autonomous VM Cluster.
- compartment
Id This property is required. string - The compartment OCID.
- compute
Model This property is required. string - The compute model of the Cloud 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 This property is required. number - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Core Count Per Node This property is required. number - The number of CPU cores enabled per VM cluster node.
- cpu
Percentage This property is required. number - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage Size In Gb This property is required. number - The total data storage allocated, in gigabytes (GB).
- data
Storage Size In Tbs This property is required. number - The total data storage allocated, in terabytes (TB).
- db
Node Storage Size In Gbs This property is required. number - The local node storage allocated in GBs.
- db
Servers This property is required. string[] - The list of OCIDs of the Db servers.
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.
- description
This property is required. string - User defined description of the cloud Autonomous VM cluster.
- display
Name This property is required. string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain
This property is required. string - The domain name for the cloud Autonomous VM cluster.
- exadata
Storage In Tbs Lowest Scaled Value This property is required. number - The lowest value to which exadataStorage (in TBs) can be scaled down.
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"}
- hostname
This property is required. string - The hostname for the cloud Autonomous VM cluster.
- id
This property is required. string - The OCID of the Cloud Autonomous VM cluster.
- is
Mtls Enabled Vm Cluster This property is required. boolean - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- last
Maintenance Run Id This property is required. string - The OCID of the last maintenance run.
- last
Update History Entry Id This property is required. string - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license
Model This property is required. string - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to
BRING_YOUR_OWN_LICENSE
. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter. - lifecycle
Details This property is required. string - Additional information about the current lifecycle state.
- maintenance
Window Details This property is required. GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail[] - maintenance
Windows This property is required. GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window[] - 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. number - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Per Oracle Compute Unit In Gbs This property is required. number - The amount of memory (in GBs) enabled per OCPU or ECPU.
- memory
Size In Gbs This property is required. number - The memory allocated in GBs.
- next
Maintenance Run Id This property is required. string - The OCID of the next maintenance run.
- node
Count This property is required. number - The number of database servers in the cloud VM cluster.
- non
Provisionable Autonomous Container Databases This property is required. number - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg
Ids This property is required. string[] - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count This property is required. number - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest Scaled Value This property is required. number - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous Container Databases This property is required. number - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous Container Databases This property is required. number - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus This property is required. number - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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.
- reserved
Cpus This property is required. number - The number of CPUs reserved in an Autonomous VM Cluster.
- scan
Listener Port Non Tls This property is required. number - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener Port Tls This property is required. number - The SCAN Listenenr TLS port. Default is 2484.
- security
Attributes This property is required. {[key: string]: string} - Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape
This property is required. string - The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state
This property is required. string - A filter to return only resources that match the given lifecycle state exactly.
- subnet
Id This property is required. string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time
Created This property is required. string - The date and time that the cloud Autonomous VM cluster was created.
- time
Database Ssl Certificate Expires This property is required. string - The date and time of Database SSL certificate expiration.
- time
Ords Certificate Expires This property is required. string - The date and time of ORDS certificate expiration.
- time
Updated This property is required. string - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Autonomous Data Storage In Tbs This property is required. number - The total data disk group size for Autonomous Databases, in TBs.
- total
Container Databases This property is required. number - The total number of Autonomous Container Databases that can be created with the allocated local storage.
- total
Cpus This property is required. number - The total number of CPUs in an Autonomous VM Cluster.
- autonomous_
data_ storage_ percentage This property is required. float - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous_
data_ storage_ size_ in_ tbs This property is required. float - The data disk group size allocated for Autonomous Databases, in TBs.
- availability_
domain This property is required. str - A filter to return only resources that match the given availability domain exactly.
- 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. float - CPU cores available for allocation to Autonomous Databases.
- cloud_
exadata_ infrastructure_ id This property is required. str - If provided, filters the results for the specified cloud Exadata infrastructure.
- cluster_
time_ zone This property is required. str - The time zone of the Cloud Autonomous VM Cluster.
- compartment_
id This property is required. str - The compartment OCID.
- compute_
model This property is required. str - The compute model of the Cloud 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 This property is required. int - The number of CPU cores on the cloud Autonomous VM cluster.
- 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 - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data_
storage_ size_ in_ gb This property is required. float - The total data storage allocated, in gigabytes (GB).
- data_
storage_ size_ in_ tbs This property is required. float - The total data storage allocated, in terabytes (TB).
- 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.
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.
- description
This property is required. str - User defined description of the cloud Autonomous VM cluster.
- 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.
- domain
This property is required. str - The domain name for the cloud Autonomous VM cluster.
- exadata_
storage_ in_ tbs_ lowest_ scaled_ value This property is required. float - The lowest value to which exadataStorage (in TBs) can be scaled down.
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"}
- hostname
This property is required. str - The hostname for the cloud Autonomous VM cluster.
- id
This property is required. str - The OCID of the Cloud Autonomous VM cluster.
- is_
mtls_ enabled_ vm_ cluster This property is required. bool - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- last_
maintenance_ run_ id This property is required. str - The OCID of the last maintenance run.
- last_
update_ history_ entry_ id This property is required. str - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license_
model This property is required. str - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to
BRING_YOUR_OWN_LICENSE
. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter. - lifecycle_
details This property is required. str - Additional information about the current lifecycle state.
- maintenance_
window_ details This property is required. Sequence[database.Get Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail] - maintenance_
windows This property is required. Sequence[database.Get Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window] - 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) 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 database servers in the cloud VM cluster.
- non_
provisionable_ autonomous_ container_ databases This property is required. int - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg_
ids This property is required. Sequence[str] - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu_
count This property is required. float - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus_
lowest_ scaled_ value This property is required. int - The lowest value to which ocpus can be scaled down.
- provisionable_
autonomous_ container_ databases This property is required. int - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- 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. float - 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. Default is 1521.
- scan_
listener_ port_ tls This property is required. int - The SCAN Listenenr TLS port. Default is 2484.
- security_
attributes This property is required. Mapping[str, str] - Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape
This property is required. str - The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state
This property is required. str - A filter to return only resources that match the given lifecycle state exactly.
- subnet_
id This property is required. str - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time_
created This property is required. str - The date and time that the cloud 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_
updated This property is required. str - The last date and time that the cloud Autonomous VM cluster was updated.
- total_
autonomous_ data_ storage_ in_ tbs This property is required. float - The total data disk group size for Autonomous Databases, in TBs.
- total_
container_ databases This property is required. int - The total number of Autonomous Container Databases that can be created with the allocated local storage.
- total_
cpus This property is required. float - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data Storage Percentage This property is required. Number - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous
Data Storage Size In Tbs This property is required. Number - The data disk group size allocated for Autonomous Databases, in TBs.
- availability
Domain This property is required. String - A filter to return only resources that match the given availability domain exactly.
- available
Autonomous Data Storage Size In Tbs This property is required. Number - The data disk group size available for Autonomous Databases, in TBs.
- available
Container Databases This property is required. Number - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus This property is required. Number - CPU cores available for allocation to Autonomous Databases.
- cloud
Exadata Infrastructure Id This property is required. String - If provided, filters the results for the specified cloud Exadata infrastructure.
- cluster
Time Zone This property is required. String - The time zone of the Cloud Autonomous VM Cluster.
- compartment
Id This property is required. String - The compartment OCID.
- compute
Model This property is required. String - The compute model of the Cloud 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 This property is required. Number - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Core Count Per Node This property is required. Number - The number of CPU cores enabled per VM cluster node.
- cpu
Percentage This property is required. Number - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage Size In Gb This property is required. Number - The total data storage allocated, in gigabytes (GB).
- data
Storage Size In Tbs This property is required. Number - The total data storage allocated, in terabytes (TB).
- db
Node Storage Size In Gbs This property is required. Number - The local node storage allocated in GBs.
- db
Servers This property is required. List<String> - The list of OCIDs of the Db servers.
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.
- description
This property is required. String - User defined description of the cloud Autonomous VM cluster.
- display
Name This property is required. String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain
This property is required. String - The domain name for the cloud Autonomous VM cluster.
- exadata
Storage In Tbs Lowest Scaled Value This property is required. Number - The lowest value to which exadataStorage (in TBs) can be scaled down.
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"}
- hostname
This property is required. String - The hostname for the cloud Autonomous VM cluster.
- id
This property is required. String - The OCID of the Cloud Autonomous VM cluster.
- is
Mtls Enabled Vm Cluster This property is required. Boolean - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- last
Maintenance Run Id This property is required. String - The OCID of the last maintenance run.
- last
Update History Entry Id This property is required. String - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license
Model This property is required. String - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to
BRING_YOUR_OWN_LICENSE
. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter. - lifecycle
Details This property is required. String - Additional information about the current lifecycle state.
- maintenance
Window Details This property is required. List<Property Map> - maintenance
Windows 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.
- max
Acds Lowest Scaled Value This property is required. Number - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Per Oracle Compute Unit In Gbs This property is required. Number - The amount of memory (in GBs) enabled per OCPU or ECPU.
- memory
Size In Gbs This property is required. Number - The memory allocated in GBs.
- next
Maintenance Run Id This property is required. String - The OCID of the next maintenance run.
- node
Count This property is required. Number - The number of database servers in the cloud VM cluster.
- non
Provisionable Autonomous Container Databases This property is required. Number - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg
Ids This property is required. List<String> - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count This property is required. Number - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest Scaled Value This property is required. Number - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous Container Databases This property is required. Number - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous Container Databases This property is required. Number - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus This property is required. Number - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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.
- reserved
Cpus This property is required. Number - The number of CPUs reserved in an Autonomous VM Cluster.
- scan
Listener Port Non Tls This property is required. Number - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener Port Tls This property is required. Number - The SCAN Listenenr TLS port. Default is 2484.
- security
Attributes This property is required. Map<String> - Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape
This property is required. String - The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state
This property is required. String - A filter to return only resources that match the given lifecycle state exactly.
- subnet
Id This property is required. String - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time
Created This property is required. String - The date and time that the cloud Autonomous VM cluster was created.
- time
Database Ssl Certificate Expires This property is required. String - The date and time of Database SSL certificate expiration.
- time
Ords Certificate Expires This property is required. String - The date and time of ORDS certificate expiration.
- time
Updated This property is required. String - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Autonomous Data Storage In Tbs This property is required. Number - The total data disk group size for Autonomous Databases, in TBs.
- total
Container Databases This property is required. Number - The total number of Autonomous Container Databases that can be created with the allocated local storage.
- total
Cpus This property is required. Number - The total number of CPUs in an Autonomous VM Cluster.
GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindow
- Custom
Action Timeout In Mins This property is required. int - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of Weeks This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- Hours
Of Days 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
- Is
Custom Action Timeout Enabled This property is required. bool - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly Patching Enabled This property is required. bool - If true, enables the monthly patching option.
- 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. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Month> - Months during the year when maintenance should be performed.
- Patching
Mode This property is required. string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference
This property is required. string - The maintenance window scheduling preference.
- Skip
Rus This property is required. List<bool> - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- Weeks
Of Months 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.
- Custom
Action Timeout In Mins This property is required. int - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of Weeks This property is required. []GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Days Of Week - Days during the week when maintenance should be performed.
- Hours
Of Days 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
- Is
Custom Action Timeout Enabled This property is required. bool - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly Patching Enabled This property is required. bool - If true, enables the monthly patching option.
- 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. []GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Month - Months during the year when maintenance should be performed.
- Patching
Mode This property is required. string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference
This property is required. string - The maintenance window scheduling preference.
- Skip
Rus This property is required. []bool - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- Weeks
Of Months 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.
- custom
Action Timeout In Mins This property is required. Integer - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of Weeks This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- hours
Of Days 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
- is
Custom Action Timeout Enabled This property is required. Boolean - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly Patching Enabled This property is required. Boolean - If true, enables the monthly patching option.
- lead
Time In Weeks 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<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Month> - Months during the year when maintenance should be performed.
- patching
Mode This property is required. String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. String - The maintenance window scheduling preference.
- skip
Rus This property is required. List<Boolean> - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks
Of Months 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.
- custom
Action Timeout In Mins This property is required. number - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of Weeks This property is required. GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Days Of Week[] - Days during the week when maintenance should be performed.
- hours
Of Days 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
- is
Custom Action Timeout Enabled This property is required. boolean - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly Patching Enabled This property is required. boolean - If true, enables the monthly patching option.
- lead
Time In Weeks 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. GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Month[] - Months during the year when maintenance should be performed.
- patching
Mode This property is required. string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. string - The maintenance window scheduling preference.
- skip
Rus This property is required. boolean[] - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks
Of Months 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 - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ weeks This property is required. Sequence[database.Get Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Days Of Week] - 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 - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ patching_ enabled This property is required. bool - If true, enables the monthly patching option.
- 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.Get Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Month] - Months during the year when maintenance should be performed.
- patching_
mode This property is required. str - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. str - The maintenance window scheduling preference.
- skip_
rus This property is required. Sequence[bool] - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- 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.
- custom
Action Timeout In Mins This property is required. Number - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of Weeks This property is required. List<Property Map> - Days during the week when maintenance should be performed.
- hours
Of Days 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
- is
Custom Action Timeout Enabled This property is required. Boolean - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly Patching Enabled This property is required. Boolean - If true, enables the monthly patching option.
- lead
Time In Weeks 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.
- patching
Mode This property is required. String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. String - The maintenance window scheduling preference.
- skip
Rus This property is required. List<Boolean> - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks
Of Months 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.
GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek
- 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.
GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetail
- Custom
Action Timeout In Mins This property is required. int - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of Weeks This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Days Of Week> - Days during the week when maintenance should be performed.
- Hours
Of Days 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
- Is
Custom Action Timeout Enabled This property is required. bool - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly Patching Enabled This property is required. bool - If true, enables the monthly patching option.
- 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. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Month> - Months during the year when maintenance should be performed.
- Patching
Mode This property is required. string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference
This property is required. string - The maintenance window scheduling preference.
- Skip
Rus This property is required. List<bool> - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- Weeks
Of Months 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.
- Custom
Action Timeout In Mins This property is required. int - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of Weeks This property is required. []GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Days Of Week - Days during the week when maintenance should be performed.
- Hours
Of Days 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
- Is
Custom Action Timeout Enabled This property is required. bool - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly Patching Enabled This property is required. bool - If true, enables the monthly patching option.
- 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. []GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Month - Months during the year when maintenance should be performed.
- Patching
Mode This property is required. string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference
This property is required. string - The maintenance window scheduling preference.
- Skip
Rus This property is required. []bool - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- Weeks
Of Months 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.
- custom
Action Timeout In Mins This property is required. Integer - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of Weeks This property is required. List<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Days Of Week> - Days during the week when maintenance should be performed.
- hours
Of Days 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
- is
Custom Action Timeout Enabled This property is required. Boolean - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly Patching Enabled This property is required. Boolean - If true, enables the monthly patching option.
- lead
Time In Weeks 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<GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Month> - Months during the year when maintenance should be performed.
- patching
Mode This property is required. String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. String - The maintenance window scheduling preference.
- skip
Rus This property is required. List<Boolean> - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks
Of Months 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.
- custom
Action Timeout In Mins This property is required. number - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of Weeks This property is required. GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Days Of Week[] - Days during the week when maintenance should be performed.
- hours
Of Days 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
- is
Custom Action Timeout Enabled This property is required. boolean - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly Patching Enabled This property is required. boolean - If true, enables the monthly patching option.
- lead
Time In Weeks 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. GetCloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Month[] - Months during the year when maintenance should be performed.
- patching
Mode This property is required. string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. string - The maintenance window scheduling preference.
- skip
Rus This property is required. boolean[] - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks
Of Months 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 - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ weeks This property is required. Sequence[database.Get Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Days Of Week] - 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 - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ patching_ enabled This property is required. bool - If true, enables the monthly patching option.
- 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.Get Cloud Autonomous Vm Clusters Cloud Autonomous Vm Cluster Maintenance Window Detail Month] - Months during the year when maintenance should be performed.
- patching_
mode This property is required. str - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. str - The maintenance window scheduling preference.
- skip_
rus This property is required. Sequence[bool] - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- 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.
- custom
Action Timeout In Mins This property is required. Number - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of Weeks This property is required. List<Property Map> - Days during the week when maintenance should be performed.
- hours
Of Days 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
- is
Custom Action Timeout Enabled This property is required. Boolean - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly Patching Enabled This property is required. Boolean - If true, enables the monthly patching option.
- lead
Time In Weeks 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.
- patching
Mode This property is required. String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference
This property is required. String - The maintenance window scheduling preference.
- skip
Rus This property is required. List<Boolean> - If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks
Of Months 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.
GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek
- 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.
GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailMonth
- 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.
GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonth
- 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.
GetCloudAutonomousVmClustersFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.