oci.Database.CloudAutonomousVmCluster
Explore with Pulumi AI
This resource provides the Cloud Autonomous Vm Cluster resource in Oracle Cloud Infrastructure Database service.
Creates an Autonomous Exadata VM cluster in the Oracle cloud. For Exadata Cloud@Customer systems, see CreateAutonomousVmCluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCloudAutonomousVmCluster = new oci.database.CloudAutonomousVmCluster("test_cloud_autonomous_vm_cluster", {
cloudExadataInfrastructureId: testCloudExadataInfrastructure.id,
compartmentId: compartmentId,
displayName: cloudAutonomousVmClusterDisplayName,
subnetId: testSubnet.id,
autonomousDataStorageSizeInTbs: cloudAutonomousVmClusterAutonomousDataStorageSizeInTbs,
clusterTimeZone: cloudAutonomousVmClusterClusterTimeZone,
computeModel: cloudAutonomousVmClusterComputeModel,
cpuCoreCountPerNode: cloudAutonomousVmClusterCpuCoreCountPerNode,
dbServers: cloudAutonomousVmClusterDbServers,
definedTags: cloudAutonomousVmClusterDefinedTags,
description: cloudAutonomousVmClusterDescription,
freeformTags: {
Department: "Finance",
},
isMtlsEnabledVmCluster: cloudAutonomousVmClusterIsMtlsEnabledVmCluster,
licenseModel: cloudAutonomousVmClusterLicenseModel,
maintenanceWindowDetails: {
customActionTimeoutInMins: cloudAutonomousVmClusterMaintenanceWindowDetailsCustomActionTimeoutInMins,
daysOfWeeks: [{
name: cloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName,
}],
hoursOfDays: cloudAutonomousVmClusterMaintenanceWindowDetailsHoursOfDay,
isCustomActionTimeoutEnabled: cloudAutonomousVmClusterMaintenanceWindowDetailsIsCustomActionTimeoutEnabled,
isMonthlyPatchingEnabled: cloudAutonomousVmClusterMaintenanceWindowDetailsIsMonthlyPatchingEnabled,
leadTimeInWeeks: cloudAutonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks,
months: [{
name: cloudAutonomousVmClusterMaintenanceWindowDetailsMonthsName,
}],
patchingMode: cloudAutonomousVmClusterMaintenanceWindowDetailsPatchingMode,
preference: cloudAutonomousVmClusterMaintenanceWindowDetailsPreference,
weeksOfMonths: cloudAutonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth,
},
memoryPerOracleComputeUnitInGbs: cloudAutonomousVmClusterMemoryPerOracleComputeUnitInGbs,
nsgIds: cloudAutonomousVmClusterNsgIds,
scanListenerPortNonTls: cloudAutonomousVmClusterScanListenerPortNonTls,
scanListenerPortTls: cloudAutonomousVmClusterScanListenerPortTls,
totalContainerDatabases: cloudAutonomousVmClusterTotalContainerDatabases,
});
import pulumi
import pulumi_oci as oci
test_cloud_autonomous_vm_cluster = oci.database.CloudAutonomousVmCluster("test_cloud_autonomous_vm_cluster",
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
compartment_id=compartment_id,
display_name=cloud_autonomous_vm_cluster_display_name,
subnet_id=test_subnet["id"],
autonomous_data_storage_size_in_tbs=cloud_autonomous_vm_cluster_autonomous_data_storage_size_in_tbs,
cluster_time_zone=cloud_autonomous_vm_cluster_cluster_time_zone,
compute_model=cloud_autonomous_vm_cluster_compute_model,
cpu_core_count_per_node=cloud_autonomous_vm_cluster_cpu_core_count_per_node,
db_servers=cloud_autonomous_vm_cluster_db_servers,
defined_tags=cloud_autonomous_vm_cluster_defined_tags,
description=cloud_autonomous_vm_cluster_description,
freeform_tags={
"Department": "Finance",
},
is_mtls_enabled_vm_cluster=cloud_autonomous_vm_cluster_is_mtls_enabled_vm_cluster,
license_model=cloud_autonomous_vm_cluster_license_model,
maintenance_window_details={
"custom_action_timeout_in_mins": cloud_autonomous_vm_cluster_maintenance_window_details_custom_action_timeout_in_mins,
"days_of_weeks": [{
"name": cloud_autonomous_vm_cluster_maintenance_window_details_days_of_week_name,
}],
"hours_of_days": cloud_autonomous_vm_cluster_maintenance_window_details_hours_of_day,
"is_custom_action_timeout_enabled": cloud_autonomous_vm_cluster_maintenance_window_details_is_custom_action_timeout_enabled,
"is_monthly_patching_enabled": cloud_autonomous_vm_cluster_maintenance_window_details_is_monthly_patching_enabled,
"lead_time_in_weeks": cloud_autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks,
"months": [{
"name": cloud_autonomous_vm_cluster_maintenance_window_details_months_name,
}],
"patching_mode": cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode,
"preference": cloud_autonomous_vm_cluster_maintenance_window_details_preference,
"weeks_of_months": cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
},
memory_per_oracle_compute_unit_in_gbs=cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
nsg_ids=cloud_autonomous_vm_cluster_nsg_ids,
scan_listener_port_non_tls=cloud_autonomous_vm_cluster_scan_listener_port_non_tls,
scan_listener_port_tls=cloud_autonomous_vm_cluster_scan_listener_port_tls,
total_container_databases=cloud_autonomous_vm_cluster_total_container_databases)
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.NewCloudAutonomousVmCluster(ctx, "test_cloud_autonomous_vm_cluster", &Database.CloudAutonomousVmClusterArgs{
CloudExadataInfrastructureId: pulumi.Any(testCloudExadataInfrastructure.Id),
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(cloudAutonomousVmClusterDisplayName),
SubnetId: pulumi.Any(testSubnet.Id),
AutonomousDataStorageSizeInTbs: pulumi.Any(cloudAutonomousVmClusterAutonomousDataStorageSizeInTbs),
ClusterTimeZone: pulumi.Any(cloudAutonomousVmClusterClusterTimeZone),
ComputeModel: pulumi.Any(cloudAutonomousVmClusterComputeModel),
CpuCoreCountPerNode: pulumi.Any(cloudAutonomousVmClusterCpuCoreCountPerNode),
DbServers: pulumi.Any(cloudAutonomousVmClusterDbServers),
DefinedTags: pulumi.Any(cloudAutonomousVmClusterDefinedTags),
Description: pulumi.Any(cloudAutonomousVmClusterDescription),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
IsMtlsEnabledVmCluster: pulumi.Any(cloudAutonomousVmClusterIsMtlsEnabledVmCluster),
LicenseModel: pulumi.Any(cloudAutonomousVmClusterLicenseModel),
MaintenanceWindowDetails: &database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs{
CustomActionTimeoutInMins: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsCustomActionTimeoutInMins),
DaysOfWeeks: database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArray{
&database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs{
Name: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName),
},
},
HoursOfDays: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsHoursOfDay),
IsCustomActionTimeoutEnabled: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsIsCustomActionTimeoutEnabled),
IsMonthlyPatchingEnabled: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsIsMonthlyPatchingEnabled),
LeadTimeInWeeks: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks),
Months: database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArray{
&database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs{
Name: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsMonthsName),
},
},
PatchingMode: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsPatchingMode),
Preference: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsPreference),
WeeksOfMonths: pulumi.Any(cloudAutonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth),
},
MemoryPerOracleComputeUnitInGbs: pulumi.Any(cloudAutonomousVmClusterMemoryPerOracleComputeUnitInGbs),
NsgIds: pulumi.Any(cloudAutonomousVmClusterNsgIds),
ScanListenerPortNonTls: pulumi.Any(cloudAutonomousVmClusterScanListenerPortNonTls),
ScanListenerPortTls: pulumi.Any(cloudAutonomousVmClusterScanListenerPortTls),
TotalContainerDatabases: pulumi.Any(cloudAutonomousVmClusterTotalContainerDatabases),
})
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 testCloudAutonomousVmCluster = new Oci.Database.CloudAutonomousVmCluster("test_cloud_autonomous_vm_cluster", new()
{
CloudExadataInfrastructureId = testCloudExadataInfrastructure.Id,
CompartmentId = compartmentId,
DisplayName = cloudAutonomousVmClusterDisplayName,
SubnetId = testSubnet.Id,
AutonomousDataStorageSizeInTbs = cloudAutonomousVmClusterAutonomousDataStorageSizeInTbs,
ClusterTimeZone = cloudAutonomousVmClusterClusterTimeZone,
ComputeModel = cloudAutonomousVmClusterComputeModel,
CpuCoreCountPerNode = cloudAutonomousVmClusterCpuCoreCountPerNode,
DbServers = cloudAutonomousVmClusterDbServers,
DefinedTags = cloudAutonomousVmClusterDefinedTags,
Description = cloudAutonomousVmClusterDescription,
FreeformTags =
{
{ "Department", "Finance" },
},
IsMtlsEnabledVmCluster = cloudAutonomousVmClusterIsMtlsEnabledVmCluster,
LicenseModel = cloudAutonomousVmClusterLicenseModel,
MaintenanceWindowDetails = new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
{
CustomActionTimeoutInMins = cloudAutonomousVmClusterMaintenanceWindowDetailsCustomActionTimeoutInMins,
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs
{
Name = cloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName,
},
},
HoursOfDays = cloudAutonomousVmClusterMaintenanceWindowDetailsHoursOfDay,
IsCustomActionTimeoutEnabled = cloudAutonomousVmClusterMaintenanceWindowDetailsIsCustomActionTimeoutEnabled,
IsMonthlyPatchingEnabled = cloudAutonomousVmClusterMaintenanceWindowDetailsIsMonthlyPatchingEnabled,
LeadTimeInWeeks = cloudAutonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks,
Months = new[]
{
new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs
{
Name = cloudAutonomousVmClusterMaintenanceWindowDetailsMonthsName,
},
},
PatchingMode = cloudAutonomousVmClusterMaintenanceWindowDetailsPatchingMode,
Preference = cloudAutonomousVmClusterMaintenanceWindowDetailsPreference,
WeeksOfMonths = cloudAutonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth,
},
MemoryPerOracleComputeUnitInGbs = cloudAutonomousVmClusterMemoryPerOracleComputeUnitInGbs,
NsgIds = cloudAutonomousVmClusterNsgIds,
ScanListenerPortNonTls = cloudAutonomousVmClusterScanListenerPortNonTls,
ScanListenerPortTls = cloudAutonomousVmClusterScanListenerPortTls,
TotalContainerDatabases = cloudAutonomousVmClusterTotalContainerDatabases,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.CloudAutonomousVmCluster;
import com.pulumi.oci.Database.CloudAutonomousVmClusterArgs;
import com.pulumi.oci.Database.inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testCloudAutonomousVmCluster = new CloudAutonomousVmCluster("testCloudAutonomousVmCluster", CloudAutonomousVmClusterArgs.builder()
.cloudExadataInfrastructureId(testCloudExadataInfrastructure.id())
.compartmentId(compartmentId)
.displayName(cloudAutonomousVmClusterDisplayName)
.subnetId(testSubnet.id())
.autonomousDataStorageSizeInTbs(cloudAutonomousVmClusterAutonomousDataStorageSizeInTbs)
.clusterTimeZone(cloudAutonomousVmClusterClusterTimeZone)
.computeModel(cloudAutonomousVmClusterComputeModel)
.cpuCoreCountPerNode(cloudAutonomousVmClusterCpuCoreCountPerNode)
.dbServers(cloudAutonomousVmClusterDbServers)
.definedTags(cloudAutonomousVmClusterDefinedTags)
.description(cloudAutonomousVmClusterDescription)
.freeformTags(Map.of("Department", "Finance"))
.isMtlsEnabledVmCluster(cloudAutonomousVmClusterIsMtlsEnabledVmCluster)
.licenseModel(cloudAutonomousVmClusterLicenseModel)
.maintenanceWindowDetails(CloudAutonomousVmClusterMaintenanceWindowDetailsArgs.builder()
.customActionTimeoutInMins(cloudAutonomousVmClusterMaintenanceWindowDetailsCustomActionTimeoutInMins)
.daysOfWeeks(CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs.builder()
.name(cloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName)
.build())
.hoursOfDays(cloudAutonomousVmClusterMaintenanceWindowDetailsHoursOfDay)
.isCustomActionTimeoutEnabled(cloudAutonomousVmClusterMaintenanceWindowDetailsIsCustomActionTimeoutEnabled)
.isMonthlyPatchingEnabled(cloudAutonomousVmClusterMaintenanceWindowDetailsIsMonthlyPatchingEnabled)
.leadTimeInWeeks(cloudAutonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks)
.months(CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs.builder()
.name(cloudAutonomousVmClusterMaintenanceWindowDetailsMonthsName)
.build())
.patchingMode(cloudAutonomousVmClusterMaintenanceWindowDetailsPatchingMode)
.preference(cloudAutonomousVmClusterMaintenanceWindowDetailsPreference)
.weeksOfMonths(cloudAutonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth)
.build())
.memoryPerOracleComputeUnitInGbs(cloudAutonomousVmClusterMemoryPerOracleComputeUnitInGbs)
.nsgIds(cloudAutonomousVmClusterNsgIds)
.scanListenerPortNonTls(cloudAutonomousVmClusterScanListenerPortNonTls)
.scanListenerPortTls(cloudAutonomousVmClusterScanListenerPortTls)
.totalContainerDatabases(cloudAutonomousVmClusterTotalContainerDatabases)
.build());
}
}
resources:
testCloudAutonomousVmCluster:
type: oci:Database:CloudAutonomousVmCluster
name: test_cloud_autonomous_vm_cluster
properties:
cloudExadataInfrastructureId: ${testCloudExadataInfrastructure.id}
compartmentId: ${compartmentId}
displayName: ${cloudAutonomousVmClusterDisplayName}
subnetId: ${testSubnet.id}
autonomousDataStorageSizeInTbs: ${cloudAutonomousVmClusterAutonomousDataStorageSizeInTbs}
clusterTimeZone: ${cloudAutonomousVmClusterClusterTimeZone}
computeModel: ${cloudAutonomousVmClusterComputeModel}
cpuCoreCountPerNode: ${cloudAutonomousVmClusterCpuCoreCountPerNode}
dbServers: ${cloudAutonomousVmClusterDbServers}
definedTags: ${cloudAutonomousVmClusterDefinedTags}
description: ${cloudAutonomousVmClusterDescription}
freeformTags:
Department: Finance
isMtlsEnabledVmCluster: ${cloudAutonomousVmClusterIsMtlsEnabledVmCluster}
licenseModel: ${cloudAutonomousVmClusterLicenseModel}
maintenanceWindowDetails:
customActionTimeoutInMins: ${cloudAutonomousVmClusterMaintenanceWindowDetailsCustomActionTimeoutInMins}
daysOfWeeks:
- name: ${cloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName}
hoursOfDays: ${cloudAutonomousVmClusterMaintenanceWindowDetailsHoursOfDay}
isCustomActionTimeoutEnabled: ${cloudAutonomousVmClusterMaintenanceWindowDetailsIsCustomActionTimeoutEnabled}
isMonthlyPatchingEnabled: ${cloudAutonomousVmClusterMaintenanceWindowDetailsIsMonthlyPatchingEnabled}
leadTimeInWeeks: ${cloudAutonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks}
months:
- name: ${cloudAutonomousVmClusterMaintenanceWindowDetailsMonthsName}
patchingMode: ${cloudAutonomousVmClusterMaintenanceWindowDetailsPatchingMode}
preference: ${cloudAutonomousVmClusterMaintenanceWindowDetailsPreference}
weeksOfMonths: ${cloudAutonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth}
memoryPerOracleComputeUnitInGbs: ${cloudAutonomousVmClusterMemoryPerOracleComputeUnitInGbs}
nsgIds: ${cloudAutonomousVmClusterNsgIds}
scanListenerPortNonTls: ${cloudAutonomousVmClusterScanListenerPortNonTls}
scanListenerPortTls: ${cloudAutonomousVmClusterScanListenerPortTls}
totalContainerDatabases: ${cloudAutonomousVmClusterTotalContainerDatabases}
Create CloudAutonomousVmCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudAutonomousVmCluster(name: string, args: CloudAutonomousVmClusterArgs, opts?: CustomResourceOptions);
@overload
def CloudAutonomousVmCluster(resource_name: str,
args: CloudAutonomousVmClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudAutonomousVmCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
cloud_exadata_infrastructure_id: Optional[str] = None,
subnet_id: Optional[str] = None,
compartment_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
maintenance_window_details: Optional[_database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs] = None,
db_servers: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
compute_model: Optional[str] = None,
autonomous_data_storage_size_in_tbs: Optional[float] = None,
is_mtls_enabled_vm_cluster: Optional[bool] = None,
license_model: Optional[str] = None,
cpu_core_count_per_node: Optional[int] = None,
memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
nsg_ids: Optional[Sequence[str]] = None,
scan_listener_port_non_tls: Optional[int] = None,
scan_listener_port_tls: Optional[int] = None,
cluster_time_zone: Optional[str] = None,
time_updated: Optional[str] = None,
total_container_databases: Optional[int] = None)
func NewCloudAutonomousVmCluster(ctx *Context, name string, args CloudAutonomousVmClusterArgs, opts ...ResourceOption) (*CloudAutonomousVmCluster, error)
public CloudAutonomousVmCluster(string name, CloudAutonomousVmClusterArgs args, CustomResourceOptions? opts = null)
public CloudAutonomousVmCluster(String name, CloudAutonomousVmClusterArgs args)
public CloudAutonomousVmCluster(String name, CloudAutonomousVmClusterArgs args, CustomResourceOptions options)
type: oci:Database:CloudAutonomousVmCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CloudAutonomousVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CloudAutonomousVmClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CloudAutonomousVmClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudAutonomousVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudAutonomousVmClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var cloudAutonomousVmClusterResource = new Oci.Database.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", new()
{
DisplayName = "string",
CloudExadataInfrastructureId = "string",
SubnetId = "string",
CompartmentId = "string",
FreeformTags =
{
{ "string", "string" },
},
MaintenanceWindowDetails = new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
{
CustomActionTimeoutInMins = 0,
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs
{
Name = "string",
},
},
HoursOfDays = new[]
{
0,
},
IsCustomActionTimeoutEnabled = false,
IsMonthlyPatchingEnabled = false,
LeadTimeInWeeks = 0,
Months = new[]
{
new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs
{
Name = "string",
},
},
PatchingMode = "string",
Preference = "string",
SkipRus = new[]
{
false,
},
WeeksOfMonths = new[]
{
0,
},
},
DbServers = new[]
{
"string",
},
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
ComputeModel = "string",
AutonomousDataStorageSizeInTbs = 0,
IsMtlsEnabledVmCluster = false,
LicenseModel = "string",
CpuCoreCountPerNode = 0,
MemoryPerOracleComputeUnitInGbs = 0,
NsgIds = new[]
{
"string",
},
ScanListenerPortNonTls = 0,
ScanListenerPortTls = 0,
ClusterTimeZone = "string",
TimeUpdated = "string",
TotalContainerDatabases = 0,
});
example, err := Database.NewCloudAutonomousVmCluster(ctx, "cloudAutonomousVmClusterResource", &Database.CloudAutonomousVmClusterArgs{
DisplayName: pulumi.String("string"),
CloudExadataInfrastructureId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
MaintenanceWindowDetails: &database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs{
CustomActionTimeoutInMins: pulumi.Int(0),
DaysOfWeeks: database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArray{
&database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs{
Name: pulumi.String("string"),
},
},
HoursOfDays: pulumi.IntArray{
pulumi.Int(0),
},
IsCustomActionTimeoutEnabled: pulumi.Bool(false),
IsMonthlyPatchingEnabled: pulumi.Bool(false),
LeadTimeInWeeks: pulumi.Int(0),
Months: database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArray{
&database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs{
Name: pulumi.String("string"),
},
},
PatchingMode: pulumi.String("string"),
Preference: pulumi.String("string"),
SkipRus: pulumi.BoolArray{
pulumi.Bool(false),
},
WeeksOfMonths: pulumi.IntArray{
pulumi.Int(0),
},
},
DbServers: pulumi.StringArray{
pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
ComputeModel: pulumi.String("string"),
AutonomousDataStorageSizeInTbs: pulumi.Float64(0),
IsMtlsEnabledVmCluster: pulumi.Bool(false),
LicenseModel: pulumi.String("string"),
CpuCoreCountPerNode: pulumi.Int(0),
MemoryPerOracleComputeUnitInGbs: pulumi.Int(0),
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
ScanListenerPortNonTls: pulumi.Int(0),
ScanListenerPortTls: pulumi.Int(0),
ClusterTimeZone: pulumi.String("string"),
TimeUpdated: pulumi.String("string"),
TotalContainerDatabases: pulumi.Int(0),
})
var cloudAutonomousVmClusterResource = new CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", CloudAutonomousVmClusterArgs.builder()
.displayName("string")
.cloudExadataInfrastructureId("string")
.subnetId("string")
.compartmentId("string")
.freeformTags(Map.of("string", "string"))
.maintenanceWindowDetails(CloudAutonomousVmClusterMaintenanceWindowDetailsArgs.builder()
.customActionTimeoutInMins(0)
.daysOfWeeks(CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs.builder()
.name("string")
.build())
.hoursOfDays(0)
.isCustomActionTimeoutEnabled(false)
.isMonthlyPatchingEnabled(false)
.leadTimeInWeeks(0)
.months(CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs.builder()
.name("string")
.build())
.patchingMode("string")
.preference("string")
.skipRus(false)
.weeksOfMonths(0)
.build())
.dbServers("string")
.definedTags(Map.of("string", "string"))
.description("string")
.computeModel("string")
.autonomousDataStorageSizeInTbs(0)
.isMtlsEnabledVmCluster(false)
.licenseModel("string")
.cpuCoreCountPerNode(0)
.memoryPerOracleComputeUnitInGbs(0)
.nsgIds("string")
.scanListenerPortNonTls(0)
.scanListenerPortTls(0)
.clusterTimeZone("string")
.timeUpdated("string")
.totalContainerDatabases(0)
.build());
cloud_autonomous_vm_cluster_resource = oci.database.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource",
display_name="string",
cloud_exadata_infrastructure_id="string",
subnet_id="string",
compartment_id="string",
freeform_tags={
"string": "string",
},
maintenance_window_details=oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs(
custom_action_timeout_in_mins=0,
days_of_weeks=[oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs(
name="string",
)],
hours_of_days=[0],
is_custom_action_timeout_enabled=False,
is_monthly_patching_enabled=False,
lead_time_in_weeks=0,
months=[oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs(
name="string",
)],
patching_mode="string",
preference="string",
skip_rus=[False],
weeks_of_months=[0],
),
db_servers=["string"],
defined_tags={
"string": "string",
},
description="string",
compute_model="string",
autonomous_data_storage_size_in_tbs=0,
is_mtls_enabled_vm_cluster=False,
license_model="string",
cpu_core_count_per_node=0,
memory_per_oracle_compute_unit_in_gbs=0,
nsg_ids=["string"],
scan_listener_port_non_tls=0,
scan_listener_port_tls=0,
cluster_time_zone="string",
time_updated="string",
total_container_databases=0)
const cloudAutonomousVmClusterResource = new oci.database.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", {
displayName: "string",
cloudExadataInfrastructureId: "string",
subnetId: "string",
compartmentId: "string",
freeformTags: {
string: "string",
},
maintenanceWindowDetails: {
customActionTimeoutInMins: 0,
daysOfWeeks: [{
name: "string",
}],
hoursOfDays: [0],
isCustomActionTimeoutEnabled: false,
isMonthlyPatchingEnabled: false,
leadTimeInWeeks: 0,
months: [{
name: "string",
}],
patchingMode: "string",
preference: "string",
skipRus: [false],
weeksOfMonths: [0],
},
dbServers: ["string"],
definedTags: {
string: "string",
},
description: "string",
computeModel: "string",
autonomousDataStorageSizeInTbs: 0,
isMtlsEnabledVmCluster: false,
licenseModel: "string",
cpuCoreCountPerNode: 0,
memoryPerOracleComputeUnitInGbs: 0,
nsgIds: ["string"],
scanListenerPortNonTls: 0,
scanListenerPortTls: 0,
clusterTimeZone: "string",
timeUpdated: "string",
totalContainerDatabases: 0,
});
type: oci:Database:CloudAutonomousVmCluster
properties:
autonomousDataStorageSizeInTbs: 0
cloudExadataInfrastructureId: string
clusterTimeZone: string
compartmentId: string
computeModel: string
cpuCoreCountPerNode: 0
dbServers:
- string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
isMtlsEnabledVmCluster: false
licenseModel: string
maintenanceWindowDetails:
customActionTimeoutInMins: 0
daysOfWeeks:
- name: string
hoursOfDays:
- 0
isCustomActionTimeoutEnabled: false
isMonthlyPatchingEnabled: false
leadTimeInWeeks: 0
months:
- name: string
patchingMode: string
preference: string
skipRus:
- false
weeksOfMonths:
- 0
memoryPerOracleComputeUnitInGbs: 0
nsgIds:
- string
scanListenerPortNonTls: 0
scanListenerPortTls: 0
subnetId: string
timeUpdated: string
totalContainerDatabases: 0
CloudAutonomousVmCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The CloudAutonomousVmCluster resource accepts the following input properties:
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- Subnet
Id string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- Autonomous
Data doubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- Cluster
Time stringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- Compute
Model string - The compute model of the Cloud Autonomous VM Cluster.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- Db
Servers List<string> - The list of database servers.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Description string
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- Dictionary<string, string>
- (Updatable) 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"}
- Is
Mtls boolEnabled Vm Cluster - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- License
Model string (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- Maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Memory
Per intOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- Nsg
Ids List<string> - (Updatable) 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.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port. Default is 2484.
- Time
Updated string - The last date and time that the cloud Autonomous VM cluster was updated.
- Total
Container intDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- Subnet
Id string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- Autonomous
Data float64Storage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- Cluster
Time stringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- Compute
Model string - The compute model of the Cloud Autonomous VM Cluster.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- Db
Servers []string - The list of database servers.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Description string
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- map[string]string
- (Updatable) 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"}
- Is
Mtls boolEnabled Vm Cluster - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- License
Model string (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- Maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Memory
Per intOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- Nsg
Ids []string - (Updatable) 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.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port. Default is 2484.
- Time
Updated string - The last date and time that the cloud Autonomous VM cluster was updated.
- Total
Container intDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- subnet
Id String - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- autonomous
Data DoubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- cluster
Time StringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compute
Model String - The compute model of the Cloud Autonomous VM Cluster.
- cpu
Core IntegerCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- db
Servers List<String> - The list of database servers.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description String
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- Map<String,String>
- (Updatable) 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"}
- is
Mtls BooleanEnabled Vm Cluster - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- license
Model String (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory
Per IntegerOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- nsg
Ids List<String> - (Updatable) 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.
- scan
Listener IntegerPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener IntegerPort Tls - The SCAN Listener TLS port. Default is 2484.
- time
Updated String - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Container IntegerDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- subnet
Id string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- autonomous
Data numberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- cluster
Time stringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compute
Model string - The compute model of the Cloud Autonomous VM Cluster.
- cpu
Core numberCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- db
Servers string[] - The list of database servers.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description string
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- {[key: string]: string}
- (Updatable) 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"}
- is
Mtls booleanEnabled Vm Cluster - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- license
Model string (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory
Per numberOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- nsg
Ids string[] - (Updatable) 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.
- scan
Listener numberPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener numberPort Tls - The SCAN Listener TLS port. Default is 2484.
- time
Updated string - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Container numberDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- cloud_
exadata_ strinfrastructure_ id - The OCID of the cloud Exadata infrastructure.
- compartment_
id str - (Updatable) The OCID of the compartment.
- display_
name str - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- subnet_
id str - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- autonomous_
data_ floatstorage_ size_ in_ tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- cluster_
time_ strzone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compute_
model str - The compute model of the Cloud Autonomous VM Cluster.
- cpu_
core_ intcount_ per_ node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- db_
servers Sequence[str] - The list of database servers.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description str
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- Mapping[str, str]
- (Updatable) 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"}
- is_
mtls_ boolenabled_ vm_ cluster - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- license_
model str (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- maintenance_
window_ database.details Cloud Autonomous Vm Cluster Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory_
per_ intoracle_ compute_ unit_ in_ gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- nsg_
ids Sequence[str] - (Updatable) 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.
- scan_
listener_ intport_ non_ tls - The SCAN Listener Non TLS port. Default is 1521.
- scan_
listener_ intport_ tls - The SCAN Listener TLS port. Default is 2484.
- time_
updated str - The last date and time that the cloud Autonomous VM cluster was updated.
- total_
container_ intdatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- subnet
Id String - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- autonomous
Data NumberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- cluster
Time StringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compute
Model String - The compute model of the Cloud Autonomous VM Cluster.
- cpu
Core NumberCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- db
Servers List<String> - The list of database servers.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description String
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- Map<String>
- (Updatable) 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"}
- is
Mtls BooleanEnabled Vm Cluster - Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
- license
Model String (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- maintenance
Window Property MapDetails - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory
Per NumberOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- nsg
Ids List<String> - (Updatable) 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.
- scan
Listener NumberPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener NumberPort Tls - The SCAN Listener TLS port. Default is 2484.
- time
Updated String - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Container NumberDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudAutonomousVmCluster resource produces the following output properties:
- Autonomous
Data doubleStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- Availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- Available
Autonomous doubleData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- Available
Container intDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- Available
Cpus double - CPU cores available for allocation to Autonomous Databases.
- Cpu
Core intCount - The number of CPU cores on the cloud Autonomous VM cluster.
- Cpu
Percentage double - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- Data
Storage doubleSize In Gb - The total data storage allocated, in gigabytes (GB).
- Data
Storage doubleSize In Tbs - The total data storage allocated, in terabytes (TB).
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Domain string
- The domain name for the cloud Autonomous VM cluster.
- Exadata
Storage doubleIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- Hostname string
- The hostname for the cloud Autonomous VM cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Windows List<CloudAutonomous Vm Cluster Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Max
Acds intLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Node
Count int - The number of database servers in the cloud VM cluster.
- Non
Provisionable intAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Ocpu
Count double - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- Ocpus
Lowest intScaled Value - The lowest value to which ocpus can be scaled down.
- Provisionable
Autonomous intContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Autonomous intContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Cpus double - The number of CPUs provisioned in an Autonomous VM Cluster.
- Reclaimable
Cpus 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 double - The number of CPUs reserved in an Autonomous VM Cluster.
- Shape string
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- State string
- The current state of the cloud Autonomous VM cluster.
- Time
Created string - The date and time that the cloud Autonomous VM cluster was created.
- Total
Autonomous doubleData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- Total
Cpus double - The total number of CPUs in an Autonomous VM Cluster.
- Autonomous
Data float64Storage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- Availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- Available
Autonomous float64Data Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- Available
Container intDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- Available
Cpus float64 - CPU cores available for allocation to Autonomous Databases.
- Cpu
Core intCount - The number of CPU cores on the cloud Autonomous VM cluster.
- Cpu
Percentage float64 - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- Data
Storage float64Size In Gb - The total data storage allocated, in gigabytes (GB).
- Data
Storage float64Size In Tbs - The total data storage allocated, in terabytes (TB).
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Domain string
- The domain name for the cloud Autonomous VM cluster.
- Exadata
Storage float64In Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- Hostname string
- The hostname for the cloud Autonomous VM cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Windows []CloudAutonomous Vm Cluster Maintenance Window - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Max
Acds intLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Node
Count int - The number of database servers in the cloud VM cluster.
- Non
Provisionable intAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Ocpu
Count float64 - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- Ocpus
Lowest intScaled Value - The lowest value to which ocpus can be scaled down.
- Provisionable
Autonomous intContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Autonomous intContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Cpus float64 - The number of CPUs provisioned in an Autonomous VM Cluster.
- Reclaimable
Cpus 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 float64 - The number of CPUs reserved in an Autonomous VM Cluster.
- Shape string
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- State string
- The current state of the cloud Autonomous VM cluster.
- Time
Created string - The date and time that the cloud Autonomous VM cluster was created.
- Total
Autonomous float64Data Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- Total
Cpus float64 - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data DoubleStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- availability
Domain String - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available
Autonomous DoubleData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- available
Container IntegerDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus Double - CPU cores available for allocation to Autonomous Databases.
- cpu
Core IntegerCount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Percentage Double - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage DoubleSize In Gb - The total data storage allocated, in gigabytes (GB).
- data
Storage DoubleSize In Tbs - The total data storage allocated, in terabytes (TB).
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- domain String
- The domain name for the cloud Autonomous VM cluster.
- exadata
Storage DoubleIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- hostname String
- The hostname for the cloud Autonomous VM cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Windows List<CloudAutonomous Vm Cluster Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Acds IntegerLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Size IntegerIn Gbs - The memory allocated in GBs.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- node
Count Integer - The number of database servers in the cloud VM cluster.
- non
Provisionable IntegerAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- ocpu
Count Double - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest IntegerScaled Value - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous IntegerContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous IntegerContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus Double - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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 Double - The number of CPUs reserved in an Autonomous VM Cluster.
- shape String
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state String
- The current state of the cloud Autonomous VM cluster.
- time
Created String - The date and time that the cloud Autonomous VM cluster was created.
- total
Autonomous DoubleData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- total
Cpus Double - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data numberStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available
Autonomous numberData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- available
Container numberDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus number - CPU cores available for allocation to Autonomous Databases.
- cpu
Core numberCount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Percentage number - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage numberSize In Gb - The total data storage allocated, in gigabytes (GB).
- data
Storage numberSize In Tbs - The total data storage allocated, in terabytes (TB).
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- domain string
- The domain name for the cloud Autonomous VM cluster.
- exadata
Storage numberIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- hostname string
- The hostname for the cloud Autonomous VM cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Maintenance stringRun Id - The OCID of the last maintenance run.
- last
Update stringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- lifecycle
Details string - Additional information about the current lifecycle state.
- maintenance
Windows CloudAutonomous Vm Cluster Maintenance Window[] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Acds numberLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Size numberIn Gbs - The memory allocated in GBs.
- next
Maintenance stringRun Id - The OCID of the next maintenance run.
- node
Count number - The number of database servers in the cloud VM cluster.
- non
Provisionable numberAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- ocpu
Count number - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest numberScaled Value - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous numberContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous numberContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus number - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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 number - The number of CPUs reserved in an Autonomous VM Cluster.
- shape string
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state string
- The current state of the cloud Autonomous VM cluster.
- time
Created string - The date and time that the cloud Autonomous VM cluster was created.
- total
Autonomous numberData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- total
Cpus number - The total number of CPUs in an Autonomous VM Cluster.
- autonomous_
data_ floatstorage_ percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- availability_
domain str - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available_
autonomous_ floatdata_ storage_ size_ in_ tbs - The data disk group size available for Autonomous Databases, in TBs.
- available_
container_ intdatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available_
cpus float - CPU cores available for allocation to Autonomous Databases.
- cpu_
core_ intcount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu_
percentage float - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data_
storage_ floatsize_ in_ gb - The total data storage allocated, in gigabytes (GB).
- data_
storage_ floatsize_ in_ tbs - The total data storage allocated, in terabytes (TB).
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- domain str
- The domain name for the cloud Autonomous VM cluster.
- exadata_
storage_ floatin_ tbs_ lowest_ scaled_ value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- hostname str
- The hostname for the cloud Autonomous VM cluster.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
maintenance_ strrun_ id - The OCID of the last maintenance run.
- last_
update_ strhistory_ entry_ id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- lifecycle_
details str - Additional information about the current lifecycle state.
- maintenance_
windows Sequence[database.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_ intlowest_ scaled_ value - The lowest value to which maximum number of ACDs can be scaled down.
- memory_
size_ intin_ gbs - The memory allocated in GBs.
- next_
maintenance_ strrun_ id - The OCID of the next maintenance run.
- node_
count int - The number of database servers in the cloud VM cluster.
- non_
provisionable_ intautonomous_ container_ databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- ocpu_
count float - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus_
lowest_ intscaled_ value - The lowest value to which ocpus can be scaled down.
- provisionable_
autonomous_ intcontainer_ databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned_
autonomous_ intcontainer_ databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned_
cpus float - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable_
cpus 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 float - The number of CPUs reserved in an Autonomous VM Cluster.
- shape str
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state str
- The current state of the cloud Autonomous VM cluster.
- time_
created str - The date and time that the cloud Autonomous VM cluster was created.
- total_
autonomous_ floatdata_ storage_ in_ tbs - The total data disk group size for Autonomous Databases, in TBs.
- total_
cpus float - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data NumberStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- availability
Domain String - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available
Autonomous NumberData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- available
Container NumberDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus Number - CPU cores available for allocation to Autonomous Databases.
- cpu
Core NumberCount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Percentage Number - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage NumberSize In Gb - The total data storage allocated, in gigabytes (GB).
- data
Storage NumberSize In Tbs - The total data storage allocated, in terabytes (TB).
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- domain String
- The domain name for the cloud Autonomous VM cluster.
- exadata
Storage NumberIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- hostname String
- The hostname for the cloud Autonomous VM cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Windows List<Property Map> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Acds NumberLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Size NumberIn Gbs - The memory allocated in GBs.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- node
Count Number - The number of database servers in the cloud VM cluster.
- non
Provisionable NumberAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- ocpu
Count Number - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest NumberScaled Value - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous NumberContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous NumberContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus Number - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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 Number - The number of CPUs reserved in an Autonomous VM Cluster.
- shape String
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state String
- The current state of the cloud Autonomous VM cluster.
- time
Created String - The date and time that the cloud Autonomous VM cluster was created.
- total
Autonomous NumberData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- total
Cpus Number - The total number of CPUs in an Autonomous VM Cluster.
Look up Existing CloudAutonomousVmCluster Resource
Get an existing CloudAutonomousVmCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CloudAutonomousVmClusterState, opts?: CustomResourceOptions): CloudAutonomousVmCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
autonomous_data_storage_percentage: Optional[float] = None,
autonomous_data_storage_size_in_tbs: Optional[float] = None,
availability_domain: Optional[str] = None,
available_autonomous_data_storage_size_in_tbs: Optional[float] = None,
available_container_databases: Optional[int] = None,
available_cpus: Optional[float] = None,
cloud_exadata_infrastructure_id: Optional[str] = None,
cluster_time_zone: Optional[str] = None,
compartment_id: Optional[str] = None,
compute_model: Optional[str] = None,
cpu_core_count: Optional[int] = None,
cpu_core_count_per_node: Optional[int] = None,
cpu_percentage: Optional[float] = None,
data_storage_size_in_gb: Optional[float] = None,
data_storage_size_in_tbs: Optional[float] = None,
db_node_storage_size_in_gbs: Optional[int] = None,
db_servers: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
domain: Optional[str] = None,
exadata_storage_in_tbs_lowest_scaled_value: Optional[float] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
hostname: Optional[str] = None,
is_mtls_enabled_vm_cluster: Optional[bool] = None,
last_maintenance_run_id: Optional[str] = None,
last_update_history_entry_id: Optional[str] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
maintenance_window_details: Optional[_database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs] = None,
maintenance_windows: Optional[Sequence[_database.CloudAutonomousVmClusterMaintenanceWindowArgs]] = None,
max_acds_lowest_scaled_value: Optional[int] = None,
memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
memory_size_in_gbs: Optional[int] = None,
next_maintenance_run_id: Optional[str] = None,
node_count: Optional[int] = None,
non_provisionable_autonomous_container_databases: Optional[int] = None,
nsg_ids: Optional[Sequence[str]] = None,
ocpu_count: Optional[float] = None,
ocpus_lowest_scaled_value: Optional[int] = None,
provisionable_autonomous_container_databases: Optional[int] = None,
provisioned_autonomous_container_databases: Optional[int] = None,
provisioned_cpus: Optional[float] = None,
reclaimable_cpus: Optional[float] = None,
reserved_cpus: Optional[float] = None,
scan_listener_port_non_tls: Optional[int] = None,
scan_listener_port_tls: Optional[int] = None,
shape: Optional[str] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
total_autonomous_data_storage_in_tbs: Optional[float] = None,
total_container_databases: Optional[int] = None,
total_cpus: Optional[float] = None) -> CloudAutonomousVmCluster
func GetCloudAutonomousVmCluster(ctx *Context, name string, id IDInput, state *CloudAutonomousVmClusterState, opts ...ResourceOption) (*CloudAutonomousVmCluster, error)
public static CloudAutonomousVmCluster Get(string name, Input<string> id, CloudAutonomousVmClusterState? state, CustomResourceOptions? opts = null)
public static CloudAutonomousVmCluster get(String name, Output<String> id, CloudAutonomousVmClusterState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Autonomous
Data doubleStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- Autonomous
Data doubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- Availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- Available
Autonomous doubleData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- Available
Container intDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- Available
Cpus double - CPU cores available for allocation to Autonomous Databases.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- Cluster
Time stringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Model string - The compute model of the Cloud Autonomous VM Cluster.
- Cpu
Core intCount - The number of CPU cores on the cloud Autonomous VM cluster.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- Cpu
Percentage double - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- Data
Storage doubleSize In Gb - The total data storage allocated, in gigabytes (GB).
- Data
Storage doubleSize In Tbs - The total data storage allocated, in terabytes (TB).
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Servers List<string> - The list of database servers.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Description string
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- Display
Name string - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- Domain string
- The domain name for the cloud Autonomous VM cluster.
- Exadata
Storage doubleIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- Dictionary<string, string>
- (Updatable) 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 string
- The hostname for the cloud Autonomous VM cluster.
- Is
Mtls boolEnabled Vm Cluster - 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 stringRun Id - The OCID of the last maintenance run.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- License
Model string (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Maintenance
Windows List<CloudAutonomous Vm Cluster Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Max
Acds intLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- Memory
Per intOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Node
Count int - The number of database servers in the cloud VM cluster.
- Non
Provisionable intAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Nsg
Ids List<string> - (Updatable) 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 double - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- Ocpus
Lowest intScaled Value - The lowest value to which ocpus can be scaled down.
- Provisionable
Autonomous intContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Autonomous intContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Cpus double - The number of CPUs provisioned in an Autonomous VM Cluster.
- Reclaimable
Cpus 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 double - The number of CPUs reserved in an Autonomous VM Cluster.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port. Default is 2484.
- Shape string
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- State string
- The current state of the cloud Autonomous VM cluster.
- Subnet
Id string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- Time
Created string - The date and time that the cloud Autonomous VM cluster was created.
- Time
Updated string - The last date and time that the cloud Autonomous VM cluster was updated.
- Total
Autonomous doubleData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- Total
Container intDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Total
Cpus double - The total number of CPUs in an Autonomous VM Cluster.
- Autonomous
Data float64Storage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- Autonomous
Data float64Storage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- Availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- Available
Autonomous float64Data Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- Available
Container intDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- Available
Cpus float64 - CPU cores available for allocation to Autonomous Databases.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- Cluster
Time stringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Model string - The compute model of the Cloud Autonomous VM Cluster.
- Cpu
Core intCount - The number of CPU cores on the cloud Autonomous VM cluster.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- Cpu
Percentage float64 - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- Data
Storage float64Size In Gb - The total data storage allocated, in gigabytes (GB).
- Data
Storage float64Size In Tbs - The total data storage allocated, in terabytes (TB).
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Servers []string - The list of database servers.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Description string
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- Display
Name string - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- Domain string
- The domain name for the cloud Autonomous VM cluster.
- Exadata
Storage float64In Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- map[string]string
- (Updatable) 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 string
- The hostname for the cloud Autonomous VM cluster.
- Is
Mtls boolEnabled Vm Cluster - 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 stringRun Id - The OCID of the last maintenance run.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- License
Model string (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Maintenance
Windows []CloudAutonomous Vm Cluster Maintenance Window Args - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Max
Acds intLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- Memory
Per intOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Node
Count int - The number of database servers in the cloud VM cluster.
- Non
Provisionable intAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Nsg
Ids []string - (Updatable) 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 float64 - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- Ocpus
Lowest intScaled Value - The lowest value to which ocpus can be scaled down.
- Provisionable
Autonomous intContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Autonomous intContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- Provisioned
Cpus float64 - The number of CPUs provisioned in an Autonomous VM Cluster.
- Reclaimable
Cpus 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 float64 - The number of CPUs reserved in an Autonomous VM Cluster.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port. Default is 2484.
- Shape string
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- State string
- The current state of the cloud Autonomous VM cluster.
- Subnet
Id string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- Time
Created string - The date and time that the cloud Autonomous VM cluster was created.
- Time
Updated string - The last date and time that the cloud Autonomous VM cluster was updated.
- Total
Autonomous float64Data Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- Total
Container intDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Total
Cpus float64 - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data DoubleStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous
Data DoubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- availability
Domain String - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available
Autonomous DoubleData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- available
Container IntegerDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus Double - CPU cores available for allocation to Autonomous Databases.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- cluster
Time StringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Model String - The compute model of the Cloud Autonomous VM Cluster.
- cpu
Core IntegerCount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Core IntegerCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- cpu
Percentage Double - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage DoubleSize In Gb - The total data storage allocated, in gigabytes (GB).
- data
Storage DoubleSize In Tbs - The total data storage allocated, in terabytes (TB).
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers List<String> - The list of database servers.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description String
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- display
Name String - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- domain String
- The domain name for the cloud Autonomous VM cluster.
- exadata
Storage DoubleIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- Map<String,String>
- (Updatable) 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 String
- The hostname for the cloud Autonomous VM cluster.
- is
Mtls BooleanEnabled Vm Cluster - 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 StringRun Id - The OCID of the last maintenance run.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license
Model String (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows List<CloudAutonomous Vm Cluster Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Acds IntegerLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Per IntegerOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memory
Size IntegerIn Gbs - The memory allocated in GBs.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- node
Count Integer - The number of database servers in the cloud VM cluster.
- non
Provisionable IntegerAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg
Ids List<String> - (Updatable) 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 Double - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest IntegerScaled Value - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous IntegerContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous IntegerContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus Double - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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 Double - The number of CPUs reserved in an Autonomous VM Cluster.
- scan
Listener IntegerPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener IntegerPort Tls - The SCAN Listener TLS port. Default is 2484.
- shape String
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state String
- The current state of the cloud Autonomous VM cluster.
- subnet
Id String - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time
Created String - The date and time that the cloud Autonomous VM cluster was created.
- time
Updated String - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Autonomous DoubleData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- total
Container IntegerDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- total
Cpus Double - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data numberStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous
Data numberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- availability
Domain string - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available
Autonomous numberData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- available
Container numberDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus number - CPU cores available for allocation to Autonomous Databases.
- cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- cluster
Time stringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compartment
Id string - (Updatable) The OCID of the compartment.
- compute
Model string - The compute model of the Cloud Autonomous VM Cluster.
- cpu
Core numberCount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Core numberCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- cpu
Percentage number - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage numberSize In Gb - The total data storage allocated, in gigabytes (GB).
- data
Storage numberSize In Tbs - The total data storage allocated, in terabytes (TB).
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers string[] - The list of database servers.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description string
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- display
Name string - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- domain string
- The domain name for the cloud Autonomous VM cluster.
- exadata
Storage numberIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- {[key: string]: string}
- (Updatable) 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 string
- The hostname for the cloud Autonomous VM cluster.
- is
Mtls booleanEnabled Vm Cluster - 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 stringRun Id - The OCID of the last maintenance run.
- last
Update stringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license
Model string (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- lifecycle
Details string - Additional information about the current lifecycle state.
- maintenance
Window CloudDetails Autonomous Vm Cluster Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows CloudAutonomous Vm Cluster Maintenance Window[] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Acds numberLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Per numberOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memory
Size numberIn Gbs - The memory allocated in GBs.
- next
Maintenance stringRun Id - The OCID of the next maintenance run.
- node
Count number - The number of database servers in the cloud VM cluster.
- non
Provisionable numberAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg
Ids string[] - (Updatable) 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 number - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest numberScaled Value - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous numberContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous numberContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus number - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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 number - The number of CPUs reserved in an Autonomous VM Cluster.
- scan
Listener numberPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener numberPort Tls - The SCAN Listener TLS port. Default is 2484.
- shape string
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state string
- The current state of the cloud Autonomous VM cluster.
- subnet
Id string - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time
Created string - The date and time that the cloud Autonomous VM cluster was created.
- time
Updated string - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Autonomous numberData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- total
Container numberDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- total
Cpus number - The total number of CPUs in an Autonomous VM Cluster.
- autonomous_
data_ floatstorage_ percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous_
data_ floatstorage_ size_ in_ tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- availability_
domain str - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available_
autonomous_ floatdata_ storage_ size_ in_ tbs - The data disk group size available for Autonomous Databases, in TBs.
- available_
container_ intdatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available_
cpus float - CPU cores available for allocation to Autonomous Databases.
- cloud_
exadata_ strinfrastructure_ id - The OCID of the cloud Exadata infrastructure.
- cluster_
time_ strzone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compartment_
id str - (Updatable) The OCID of the compartment.
- compute_
model str - The compute model of the Cloud Autonomous VM Cluster.
- cpu_
core_ intcount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu_
core_ intcount_ per_ node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- cpu_
percentage float - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data_
storage_ floatsize_ in_ gb - The total data storage allocated, in gigabytes (GB).
- data_
storage_ floatsize_ in_ tbs - The total data storage allocated, in terabytes (TB).
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- db_
servers Sequence[str] - The list of database servers.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description str
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- display_
name str - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- domain str
- The domain name for the cloud Autonomous VM cluster.
- exadata_
storage_ floatin_ tbs_ lowest_ scaled_ value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- Mapping[str, str]
- (Updatable) 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 str
- The hostname for the cloud Autonomous VM cluster.
- is_
mtls_ boolenabled_ vm_ cluster - 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_ strrun_ id - The OCID of the last maintenance run.
- last_
update_ strhistory_ entry_ id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license_
model str (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- lifecycle_
details str - Additional information about the current lifecycle state.
- maintenance_
window_ database.details Cloud Autonomous Vm Cluster Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance_
windows Sequence[database.Cloud Autonomous Vm Cluster Maintenance Window Args] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max_
acds_ intlowest_ scaled_ value - The lowest value to which maximum number of ACDs can be scaled down.
- memory_
per_ intoracle_ compute_ unit_ in_ gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memory_
size_ intin_ gbs - The memory allocated in GBs.
- next_
maintenance_ strrun_ id - The OCID of the next maintenance run.
- node_
count int - The number of database servers in the cloud VM cluster.
- non_
provisionable_ intautonomous_ container_ databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg_
ids Sequence[str] - (Updatable) 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 float - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus_
lowest_ intscaled_ value - The lowest value to which ocpus can be scaled down.
- provisionable_
autonomous_ intcontainer_ databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned_
autonomous_ intcontainer_ databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned_
cpus float - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable_
cpus 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 float - The number of CPUs reserved in an Autonomous VM Cluster.
- scan_
listener_ intport_ non_ tls - The SCAN Listener Non TLS port. Default is 1521.
- scan_
listener_ intport_ tls - The SCAN Listener TLS port. Default is 2484.
- shape str
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state str
- The current state of the cloud Autonomous VM cluster.
- subnet_
id str - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time_
created str - The date and time that the cloud Autonomous VM cluster was created.
- time_
updated str - The last date and time that the cloud Autonomous VM cluster was updated.
- total_
autonomous_ floatdata_ storage_ in_ tbs - The total data disk group size for Autonomous Databases, in TBs.
- total_
container_ intdatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- total_
cpus float - The total number of CPUs in an Autonomous VM Cluster.
- autonomous
Data NumberStorage Percentage - The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
- autonomous
Data NumberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- availability
Domain String - The name of the availability domain that the cloud Autonomous VM cluster is located in.
- available
Autonomous NumberData Storage Size In Tbs - The data disk group size available for Autonomous Databases, in TBs.
- available
Container NumberDatabases - The number of Autonomous Container Databases that can be created with the currently available local storage.
- available
Cpus Number - CPU cores available for allocation to Autonomous Databases.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure.
- cluster
Time StringZone - The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Model String - The compute model of the Cloud Autonomous VM Cluster.
- cpu
Core NumberCount - The number of CPU cores on the cloud Autonomous VM cluster.
- cpu
Core NumberCount Per Node - (Updatable) The number of CPU cores to be enabled per VM cluster node.
- cpu
Percentage Number - The percentage of total number of CPUs used in an Autonomous VM Cluster.
- data
Storage NumberSize In Gb - The total data storage allocated, in gigabytes (GB).
- data
Storage NumberSize In Tbs - The total data storage allocated, in terabytes (TB).
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers List<String> - The list of database servers.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- description String
- (Updatable) User defined description of the cloud Autonomous VM cluster.
- display
Name String - (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
- domain String
- The domain name for the cloud Autonomous VM cluster.
- exadata
Storage NumberIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage (in TBs) can be scaled down.
- Map<String>
- (Updatable) 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 String
- The hostname for the cloud Autonomous VM cluster.
- is
Mtls BooleanEnabled Vm Cluster - 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 StringRun Id - The OCID of the last maintenance run.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
- license
Model String (Updatable) 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.This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Window Property MapDetails - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows List<Property Map> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Acds NumberLowest Scaled Value - The lowest value to which maximum number of ACDs can be scaled down.
- memory
Per NumberOracle Compute Unit In Gbs - The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memory
Size NumberIn Gbs - The memory allocated in GBs.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- node
Count Number - The number of database servers in the cloud VM cluster.
- non
Provisionable NumberAutonomous Container Databases - The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- nsg
Ids List<String> - (Updatable) 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 Number - The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
- ocpus
Lowest NumberScaled Value - The lowest value to which ocpus can be scaled down.
- provisionable
Autonomous NumberContainer Databases - The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Autonomous NumberContainer Databases - The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned
Cpus Number - The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable
Cpus 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 Number - The number of CPUs reserved in an Autonomous VM Cluster.
- scan
Listener NumberPort Non Tls - The SCAN Listener Non TLS port. Default is 1521.
- scan
Listener NumberPort Tls - The SCAN Listener TLS port. Default is 2484.
- shape String
- The model name of the Exadata hardware running the cloud Autonomous VM cluster.
- state String
- The current state of the cloud Autonomous VM cluster.
- subnet
Id String - The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
- time
Created String - The date and time that the cloud Autonomous VM cluster was created.
- time
Updated String - The last date and time that the cloud Autonomous VM cluster was updated.
- total
Autonomous NumberData Storage In Tbs - The total data disk group size for Autonomous Databases, in TBs.
- total
Container NumberDatabases (Updatable) The total number of Autonomous Container Databases that can be created.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- total
Cpus Number - The total number of CPUs in an Autonomous VM Cluster.
Supporting Types
CloudAutonomousVmClusterMaintenanceWindow, CloudAutonomousVmClusterMaintenanceWindowArgs
- Custom
Action intTimeout In Mins - 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 List<CloudWeeks Autonomous Vm Cluster Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- Hours
Of List<int>Days - 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 boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<Cloud
Autonomous Vm Cluster Maintenance Window Month> - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus List<bool> - Weeks
Of List<int>Months - 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 intTimeout In Mins - 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 []CloudWeeks Autonomous Vm Cluster Maintenance Window Days Of Week - Days during the week when maintenance should be performed.
- Hours
Of []intDays - 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 boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - 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
[]Cloud
Autonomous Vm Cluster Maintenance Window Month - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus []bool - Weeks
Of []intMonths - 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 IntegerTimeout In Mins - 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 List<CloudWeeks Autonomous Vm Cluster Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- hours
Of List<Integer>Days - 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 BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time IntegerIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
List<Cloud
Autonomous Vm Cluster Maintenance Window Month> - Months during the year when maintenance should be performed.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Integer>Months - 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 numberTimeout In Mins - 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 CloudWeeks Autonomous Vm Cluster Maintenance Window Days Of Week[] - Days during the week when maintenance should be performed.
- hours
Of number[]Days - 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 booleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly booleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time numberIn Weeks - 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
Cloud
Autonomous Vm Cluster Maintenance Window Month[] - Months during the year when maintenance should be performed.
- patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference string
- The maintenance window scheduling preference.
- skip
Rus boolean[] - weeks
Of number[]Months - 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_ inttimeout_ in_ mins - 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_ Sequence[database.weeks Cloud Autonomous Vm Cluster Maintenance Window Days Of Week] - Days during the week when maintenance should be performed.
- hours_
of_ Sequence[int]days - 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_ boolaction_ timeout_ enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ boolpatching_ enabled - If true, enables the monthly patching option.
- lead_
time_ intin_ weeks - 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
Sequence[database.
Cloud Autonomous Vm Cluster Maintenance Window Month] - Months during the year when maintenance should be performed.
- patching_
mode str - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference str
- The maintenance window scheduling preference.
- skip_
rus Sequence[bool] - weeks_
of_ Sequence[int]months - 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 NumberTimeout In Mins - 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 List<Property Map>Weeks - Days during the week when maintenance should be performed.
- hours
Of List<Number>Days - 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 BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time NumberIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- Months during the year when maintenance should be performed.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Number>Months - 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.
CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek, CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
CloudAutonomousVmClusterMaintenanceWindowDetails, CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
- Custom
Action intTimeout In Mins - (Updatable) 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 List<CloudWeeks Autonomous Vm Cluster Maintenance Window Details Days Of Week> - (Updatable) Days during the week when maintenance should be performed.
- Hours
Of List<int>Days - (Updatable) 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 boolAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - (Updatable) If true, enables the monthly patching option.
- Lead
Time intIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<Cloud
Autonomous Vm Cluster Maintenance Window Details Month> - (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Skip
Rus List<bool> - Weeks
Of List<int>Months - (Updatable) 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 intTimeout In Mins - (Updatable) 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 []CloudWeeks Autonomous Vm Cluster Maintenance Window Details Days Of Week - (Updatable) Days during the week when maintenance should be performed.
- Hours
Of []intDays - (Updatable) 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 boolAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - (Updatable) If true, enables the monthly patching option.
- Lead
Time intIn Weeks - (Updatable) 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
[]Cloud
Autonomous Vm Cluster Maintenance Window Details Month - (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Skip
Rus []bool - Weeks
Of []intMonths - (Updatable) 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 IntegerTimeout In Mins - (Updatable) 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 List<CloudWeeks Autonomous Vm Cluster Maintenance Window Details Days Of Week> - (Updatable) Days during the week when maintenance should be performed.
- hours
Of List<Integer>Days - (Updatable) 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 BooleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time IntegerIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
List<Cloud
Autonomous Vm Cluster Maintenance Window Details Month> - (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Integer>Months - (Updatable) 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 numberTimeout In Mins - (Updatable) 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 CloudWeeks Autonomous Vm Cluster Maintenance Window Details Days Of Week[] - (Updatable) Days during the week when maintenance should be performed.
- hours
Of number[]Days - (Updatable) 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 booleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly booleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time numberIn Weeks - (Updatable) 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
Cloud
Autonomous Vm Cluster Maintenance Window Details Month[] - (Updatable) Months during the year when maintenance should be performed.
- patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference string
- (Updatable) The maintenance window scheduling preference.
- skip
Rus boolean[] - weeks
Of number[]Months - (Updatable) 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_ inttimeout_ in_ mins - (Updatable) 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_ Sequence[database.weeks Cloud Autonomous Vm Cluster Maintenance Window Details Days Of Week] - (Updatable) Days during the week when maintenance should be performed.
- hours_
of_ Sequence[int]days - (Updatable) 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_ boolaction_ timeout_ enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ boolpatching_ enabled - (Updatable) If true, enables the monthly patching option.
- lead_
time_ intin_ weeks - (Updatable) 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
Sequence[database.
Cloud Autonomous Vm Cluster Maintenance Window Details Month] - (Updatable) Months during the year when maintenance should be performed.
- patching_
mode str (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference str
- (Updatable) The maintenance window scheduling preference.
- skip_
rus Sequence[bool] - weeks_
of_ Sequence[int]months - (Updatable) 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 NumberTimeout In Mins - (Updatable) 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 List<Property Map>Weeks - (Updatable) Days during the week when maintenance should be performed.
- hours
Of List<Number>Days - (Updatable) 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 BooleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time NumberIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Number>Months - (Updatable) 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.
CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeek, CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs
- Name string
- (Updatable) Name of the day of the week.
- Name string
- (Updatable) Name of the day of the week.
- name String
- (Updatable) Name of the day of the week.
- name string
- (Updatable) Name of the day of the week.
- name str
- (Updatable) Name of the day of the week.
- name String
- (Updatable) Name of the day of the week.
CloudAutonomousVmClusterMaintenanceWindowDetailsMonth, CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs
- Name string
- (Updatable) Name of the month of the year.
- Name string
- (Updatable) Name of the month of the year.
- name String
- (Updatable) Name of the month of the year.
- name string
- (Updatable) Name of the month of the year.
- name str
- (Updatable) Name of the month of the year.
- name String
- (Updatable) Name of the month of the year.
CloudAutonomousVmClusterMaintenanceWindowMonth, CloudAutonomousVmClusterMaintenanceWindowMonthArgs
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
Import
CloudAutonomousVmClusters can be imported using the id
, e.g.
$ pulumi import oci:Database/cloudAutonomousVmCluster:CloudAutonomousVmCluster test_cloud_autonomous_vm_cluster "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.