oci.Database.AutonomousVmCluster
Explore with Pulumi AI
This resource provides the Autonomous Vm Cluster resource in Oracle Cloud Infrastructure Database service.
Creates an Autonomous VM cluster for Exadata Cloud@Customer. To create an Autonomous VM Cluster in the Oracle cloud, see CreateCloudAutonomousVmCluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousVmCluster = new oci.database.AutonomousVmCluster("test_autonomous_vm_cluster", {
compartmentId: compartmentId,
displayName: autonomousVmClusterDisplayName,
exadataInfrastructureId: testExadataInfrastructure.id,
vmClusterNetworkId: testVmClusterNetwork.id,
autonomousDataStorageSizeInTbs: autonomousVmClusterAutonomousDataStorageSizeInTbs,
computeModel: autonomousVmClusterComputeModel,
cpuCoreCountPerNode: autonomousVmClusterCpuCoreCountPerNode,
dbServers: autonomousVmClusterDbServers,
definedTags: autonomousVmClusterDefinedTags,
freeformTags: {
Department: "Finance",
},
isLocalBackupEnabled: autonomousVmClusterIsLocalBackupEnabled,
isMtlsEnabled: autonomousVmClusterIsMtlsEnabled,
licenseModel: autonomousVmClusterLicenseModel,
maintenanceWindowDetails: [{
daysOfWeeks: [{
name: autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName,
}],
hoursOfDays: autonomousVmClusterMaintenanceWindowDetailsHoursOfDay,
leadTimeInWeeks: autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks,
months: [{
name: autonomousVmClusterMaintenanceWindowDetailsMonthsName,
}],
patchingMode: autonomousVmClusterMaintenanceWindowDetailsPatchingMode,
preference: autonomousVmClusterMaintenanceWindowDetailsPreference,
weeksOfMonths: autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth,
}],
memoryPerOracleComputeUnitInGbs: autonomousVmClusterMemoryPerOracleComputeUnitInGbs,
scanListenerPortNonTls: autonomousVmClusterScanListenerPortNonTls,
scanListenerPortTls: autonomousVmClusterScanListenerPortTls,
timeZone: autonomousVmClusterTimeZone,
totalContainerDatabases: autonomousVmClusterTotalContainerDatabases,
});
import pulumi
import pulumi_oci as oci
test_autonomous_vm_cluster = oci.database.AutonomousVmCluster("test_autonomous_vm_cluster",
compartment_id=compartment_id,
display_name=autonomous_vm_cluster_display_name,
exadata_infrastructure_id=test_exadata_infrastructure["id"],
vm_cluster_network_id=test_vm_cluster_network["id"],
autonomous_data_storage_size_in_tbs=autonomous_vm_cluster_autonomous_data_storage_size_in_tbs,
compute_model=autonomous_vm_cluster_compute_model,
cpu_core_count_per_node=autonomous_vm_cluster_cpu_core_count_per_node,
db_servers=autonomous_vm_cluster_db_servers,
defined_tags=autonomous_vm_cluster_defined_tags,
freeform_tags={
"Department": "Finance",
},
is_local_backup_enabled=autonomous_vm_cluster_is_local_backup_enabled,
is_mtls_enabled=autonomous_vm_cluster_is_mtls_enabled,
license_model=autonomous_vm_cluster_license_model,
maintenance_window_details=[{
"days_of_weeks": [{
"name": autonomous_vm_cluster_maintenance_window_details_days_of_week_name,
}],
"hours_of_days": autonomous_vm_cluster_maintenance_window_details_hours_of_day,
"lead_time_in_weeks": autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks,
"months": [{
"name": autonomous_vm_cluster_maintenance_window_details_months_name,
}],
"patching_mode": autonomous_vm_cluster_maintenance_window_details_patching_mode,
"preference": autonomous_vm_cluster_maintenance_window_details_preference,
"weeks_of_months": autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
}],
memory_per_oracle_compute_unit_in_gbs=autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
scan_listener_port_non_tls=autonomous_vm_cluster_scan_listener_port_non_tls,
scan_listener_port_tls=autonomous_vm_cluster_scan_listener_port_tls,
time_zone=autonomous_vm_cluster_time_zone,
total_container_databases=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.NewAutonomousVmCluster(ctx, "test_autonomous_vm_cluster", &Database.AutonomousVmClusterArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(autonomousVmClusterDisplayName),
ExadataInfrastructureId: pulumi.Any(testExadataInfrastructure.Id),
VmClusterNetworkId: pulumi.Any(testVmClusterNetwork.Id),
AutonomousDataStorageSizeInTbs: pulumi.Any(autonomousVmClusterAutonomousDataStorageSizeInTbs),
ComputeModel: pulumi.Any(autonomousVmClusterComputeModel),
CpuCoreCountPerNode: pulumi.Any(autonomousVmClusterCpuCoreCountPerNode),
DbServers: pulumi.Any(autonomousVmClusterDbServers),
DefinedTags: pulumi.Any(autonomousVmClusterDefinedTags),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
IsLocalBackupEnabled: pulumi.Any(autonomousVmClusterIsLocalBackupEnabled),
IsMtlsEnabled: pulumi.Any(autonomousVmClusterIsMtlsEnabled),
LicenseModel: pulumi.Any(autonomousVmClusterLicenseModel),
MaintenanceWindowDetails: database.AutonomousVmClusterMaintenanceWindowDetailArray{
&database.AutonomousVmClusterMaintenanceWindowDetailArgs{
DaysOfWeeks: database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArray{
&database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs{
Name: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName),
},
},
HoursOfDays: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsHoursOfDay),
LeadTimeInWeeks: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks),
Months: database.AutonomousVmClusterMaintenanceWindowDetailMonthArray{
&database.AutonomousVmClusterMaintenanceWindowDetailMonthArgs{
Name: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsMonthsName),
},
},
PatchingMode: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsPatchingMode),
Preference: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsPreference),
WeeksOfMonths: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth),
},
},
MemoryPerOracleComputeUnitInGbs: pulumi.Any(autonomousVmClusterMemoryPerOracleComputeUnitInGbs),
ScanListenerPortNonTls: pulumi.Any(autonomousVmClusterScanListenerPortNonTls),
ScanListenerPortTls: pulumi.Any(autonomousVmClusterScanListenerPortTls),
TimeZone: pulumi.Any(autonomousVmClusterTimeZone),
TotalContainerDatabases: pulumi.Any(autonomousVmClusterTotalContainerDatabases),
})
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 testAutonomousVmCluster = new Oci.Database.AutonomousVmCluster("test_autonomous_vm_cluster", new()
{
CompartmentId = compartmentId,
DisplayName = autonomousVmClusterDisplayName,
ExadataInfrastructureId = testExadataInfrastructure.Id,
VmClusterNetworkId = testVmClusterNetwork.Id,
AutonomousDataStorageSizeInTbs = autonomousVmClusterAutonomousDataStorageSizeInTbs,
ComputeModel = autonomousVmClusterComputeModel,
CpuCoreCountPerNode = autonomousVmClusterCpuCoreCountPerNode,
DbServers = autonomousVmClusterDbServers,
DefinedTags = autonomousVmClusterDefinedTags,
FreeformTags =
{
{ "Department", "Finance" },
},
IsLocalBackupEnabled = autonomousVmClusterIsLocalBackupEnabled,
IsMtlsEnabled = autonomousVmClusterIsMtlsEnabled,
LicenseModel = autonomousVmClusterLicenseModel,
MaintenanceWindowDetails = new[]
{
new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailArgs
{
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs
{
Name = autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName,
},
},
HoursOfDays = autonomousVmClusterMaintenanceWindowDetailsHoursOfDay,
LeadTimeInWeeks = autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks,
Months = new[]
{
new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailMonthArgs
{
Name = autonomousVmClusterMaintenanceWindowDetailsMonthsName,
},
},
PatchingMode = autonomousVmClusterMaintenanceWindowDetailsPatchingMode,
Preference = autonomousVmClusterMaintenanceWindowDetailsPreference,
WeeksOfMonths = autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth,
},
},
MemoryPerOracleComputeUnitInGbs = autonomousVmClusterMemoryPerOracleComputeUnitInGbs,
ScanListenerPortNonTls = autonomousVmClusterScanListenerPortNonTls,
ScanListenerPortTls = autonomousVmClusterScanListenerPortTls,
TimeZone = autonomousVmClusterTimeZone,
TotalContainerDatabases = autonomousVmClusterTotalContainerDatabases,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.AutonomousVmCluster;
import com.pulumi.oci.Database.AutonomousVmClusterArgs;
import com.pulumi.oci.Database.inputs.AutonomousVmClusterMaintenanceWindowDetailArgs;
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 testAutonomousVmCluster = new AutonomousVmCluster("testAutonomousVmCluster", AutonomousVmClusterArgs.builder()
.compartmentId(compartmentId)
.displayName(autonomousVmClusterDisplayName)
.exadataInfrastructureId(testExadataInfrastructure.id())
.vmClusterNetworkId(testVmClusterNetwork.id())
.autonomousDataStorageSizeInTbs(autonomousVmClusterAutonomousDataStorageSizeInTbs)
.computeModel(autonomousVmClusterComputeModel)
.cpuCoreCountPerNode(autonomousVmClusterCpuCoreCountPerNode)
.dbServers(autonomousVmClusterDbServers)
.definedTags(autonomousVmClusterDefinedTags)
.freeformTags(Map.of("Department", "Finance"))
.isLocalBackupEnabled(autonomousVmClusterIsLocalBackupEnabled)
.isMtlsEnabled(autonomousVmClusterIsMtlsEnabled)
.licenseModel(autonomousVmClusterLicenseModel)
.maintenanceWindowDetails(AutonomousVmClusterMaintenanceWindowDetailArgs.builder()
.daysOfWeeks(AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs.builder()
.name(autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName)
.build())
.hoursOfDays(autonomousVmClusterMaintenanceWindowDetailsHoursOfDay)
.leadTimeInWeeks(autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks)
.months(AutonomousVmClusterMaintenanceWindowDetailMonthArgs.builder()
.name(autonomousVmClusterMaintenanceWindowDetailsMonthsName)
.build())
.patchingMode(autonomousVmClusterMaintenanceWindowDetailsPatchingMode)
.preference(autonomousVmClusterMaintenanceWindowDetailsPreference)
.weeksOfMonths(autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth)
.build())
.memoryPerOracleComputeUnitInGbs(autonomousVmClusterMemoryPerOracleComputeUnitInGbs)
.scanListenerPortNonTls(autonomousVmClusterScanListenerPortNonTls)
.scanListenerPortTls(autonomousVmClusterScanListenerPortTls)
.timeZone(autonomousVmClusterTimeZone)
.totalContainerDatabases(autonomousVmClusterTotalContainerDatabases)
.build());
}
}
resources:
testAutonomousVmCluster:
type: oci:Database:AutonomousVmCluster
name: test_autonomous_vm_cluster
properties:
compartmentId: ${compartmentId}
displayName: ${autonomousVmClusterDisplayName}
exadataInfrastructureId: ${testExadataInfrastructure.id}
vmClusterNetworkId: ${testVmClusterNetwork.id}
autonomousDataStorageSizeInTbs: ${autonomousVmClusterAutonomousDataStorageSizeInTbs}
computeModel: ${autonomousVmClusterComputeModel}
cpuCoreCountPerNode: ${autonomousVmClusterCpuCoreCountPerNode}
dbServers: ${autonomousVmClusterDbServers}
definedTags: ${autonomousVmClusterDefinedTags}
freeformTags:
Department: Finance
isLocalBackupEnabled: ${autonomousVmClusterIsLocalBackupEnabled}
isMtlsEnabled: ${autonomousVmClusterIsMtlsEnabled}
licenseModel: ${autonomousVmClusterLicenseModel}
maintenanceWindowDetails:
- daysOfWeeks:
- name: ${autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName}
hoursOfDays: ${autonomousVmClusterMaintenanceWindowDetailsHoursOfDay}
leadTimeInWeeks: ${autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks}
months:
- name: ${autonomousVmClusterMaintenanceWindowDetailsMonthsName}
patchingMode: ${autonomousVmClusterMaintenanceWindowDetailsPatchingMode}
preference: ${autonomousVmClusterMaintenanceWindowDetailsPreference}
weeksOfMonths: ${autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth}
memoryPerOracleComputeUnitInGbs: ${autonomousVmClusterMemoryPerOracleComputeUnitInGbs}
scanListenerPortNonTls: ${autonomousVmClusterScanListenerPortNonTls}
scanListenerPortTls: ${autonomousVmClusterScanListenerPortTls}
timeZone: ${autonomousVmClusterTimeZone}
totalContainerDatabases: ${autonomousVmClusterTotalContainerDatabases}
Create AutonomousVmCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutonomousVmCluster(name: string, args: AutonomousVmClusterArgs, opts?: CustomResourceOptions);
@overload
def AutonomousVmCluster(resource_name: str,
args: AutonomousVmClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AutonomousVmCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
compartment_id: Optional[str] = None,
vm_cluster_network_id: Optional[str] = None,
exadata_infrastructure_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
license_model: Optional[str] = None,
db_servers: Optional[Sequence[str]] = None,
cpu_core_count_per_node: Optional[int] = None,
autonomous_data_storage_size_in_tbs: Optional[float] = None,
is_local_backup_enabled: Optional[bool] = None,
is_mtls_enabled: Optional[bool] = None,
defined_tags: Optional[Mapping[str, str]] = None,
maintenance_window_details: Optional[Sequence[_database.AutonomousVmClusterMaintenanceWindowDetailArgs]] = None,
memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
scan_listener_port_non_tls: Optional[int] = None,
scan_listener_port_tls: Optional[int] = None,
time_zone: Optional[str] = None,
total_container_databases: Optional[int] = None,
compute_model: Optional[str] = None)
func NewAutonomousVmCluster(ctx *Context, name string, args AutonomousVmClusterArgs, opts ...ResourceOption) (*AutonomousVmCluster, error)
public AutonomousVmCluster(string name, AutonomousVmClusterArgs args, CustomResourceOptions? opts = null)
public AutonomousVmCluster(String name, AutonomousVmClusterArgs args)
public AutonomousVmCluster(String name, AutonomousVmClusterArgs args, CustomResourceOptions options)
type: oci:Database:AutonomousVmCluster
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 AutonomousVmClusterArgs
- 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 AutonomousVmClusterArgs
- 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 AutonomousVmClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutonomousVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutonomousVmClusterArgs
- 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 autonomousVmClusterResource = new Oci.Database.AutonomousVmCluster("autonomousVmClusterResource", new()
{
DisplayName = "string",
CompartmentId = "string",
VmClusterNetworkId = "string",
ExadataInfrastructureId = "string",
FreeformTags =
{
{ "string", "string" },
},
LicenseModel = "string",
DbServers = new[]
{
"string",
},
CpuCoreCountPerNode = 0,
AutonomousDataStorageSizeInTbs = 0,
IsLocalBackupEnabled = false,
IsMtlsEnabled = false,
DefinedTags =
{
{ "string", "string" },
},
MaintenanceWindowDetails = new[]
{
new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailArgs
{
CustomActionTimeoutInMins = 0,
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs
{
Name = "string",
},
},
HoursOfDays = new[]
{
0,
},
IsCustomActionTimeoutEnabled = false,
IsMonthlyPatchingEnabled = false,
LeadTimeInWeeks = 0,
Months = new[]
{
new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailMonthArgs
{
Name = "string",
},
},
PatchingMode = "string",
Preference = "string",
SkipRus = new[]
{
false,
},
WeeksOfMonths = new[]
{
0,
},
},
},
MemoryPerOracleComputeUnitInGbs = 0,
ScanListenerPortNonTls = 0,
ScanListenerPortTls = 0,
TimeZone = "string",
TotalContainerDatabases = 0,
ComputeModel = "string",
});
example, err := Database.NewAutonomousVmCluster(ctx, "autonomousVmClusterResource", &Database.AutonomousVmClusterArgs{
DisplayName: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
VmClusterNetworkId: pulumi.String("string"),
ExadataInfrastructureId: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
LicenseModel: pulumi.String("string"),
DbServers: pulumi.StringArray{
pulumi.String("string"),
},
CpuCoreCountPerNode: pulumi.Int(0),
AutonomousDataStorageSizeInTbs: pulumi.Float64(0),
IsLocalBackupEnabled: pulumi.Bool(false),
IsMtlsEnabled: pulumi.Bool(false),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
MaintenanceWindowDetails: database.AutonomousVmClusterMaintenanceWindowDetailArray{
&database.AutonomousVmClusterMaintenanceWindowDetailArgs{
CustomActionTimeoutInMins: pulumi.Int(0),
DaysOfWeeks: database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArray{
&database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs{
Name: pulumi.String("string"),
},
},
HoursOfDays: pulumi.IntArray{
pulumi.Int(0),
},
IsCustomActionTimeoutEnabled: pulumi.Bool(false),
IsMonthlyPatchingEnabled: pulumi.Bool(false),
LeadTimeInWeeks: pulumi.Int(0),
Months: database.AutonomousVmClusterMaintenanceWindowDetailMonthArray{
&database.AutonomousVmClusterMaintenanceWindowDetailMonthArgs{
Name: pulumi.String("string"),
},
},
PatchingMode: pulumi.String("string"),
Preference: pulumi.String("string"),
SkipRus: pulumi.BoolArray{
pulumi.Bool(false),
},
WeeksOfMonths: pulumi.IntArray{
pulumi.Int(0),
},
},
},
MemoryPerOracleComputeUnitInGbs: pulumi.Int(0),
ScanListenerPortNonTls: pulumi.Int(0),
ScanListenerPortTls: pulumi.Int(0),
TimeZone: pulumi.String("string"),
TotalContainerDatabases: pulumi.Int(0),
ComputeModel: pulumi.String("string"),
})
var autonomousVmClusterResource = new AutonomousVmCluster("autonomousVmClusterResource", AutonomousVmClusterArgs.builder()
.displayName("string")
.compartmentId("string")
.vmClusterNetworkId("string")
.exadataInfrastructureId("string")
.freeformTags(Map.of("string", "string"))
.licenseModel("string")
.dbServers("string")
.cpuCoreCountPerNode(0)
.autonomousDataStorageSizeInTbs(0)
.isLocalBackupEnabled(false)
.isMtlsEnabled(false)
.definedTags(Map.of("string", "string"))
.maintenanceWindowDetails(AutonomousVmClusterMaintenanceWindowDetailArgs.builder()
.customActionTimeoutInMins(0)
.daysOfWeeks(AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs.builder()
.name("string")
.build())
.hoursOfDays(0)
.isCustomActionTimeoutEnabled(false)
.isMonthlyPatchingEnabled(false)
.leadTimeInWeeks(0)
.months(AutonomousVmClusterMaintenanceWindowDetailMonthArgs.builder()
.name("string")
.build())
.patchingMode("string")
.preference("string")
.skipRus(false)
.weeksOfMonths(0)
.build())
.memoryPerOracleComputeUnitInGbs(0)
.scanListenerPortNonTls(0)
.scanListenerPortTls(0)
.timeZone("string")
.totalContainerDatabases(0)
.computeModel("string")
.build());
autonomous_vm_cluster_resource = oci.database.AutonomousVmCluster("autonomousVmClusterResource",
display_name="string",
compartment_id="string",
vm_cluster_network_id="string",
exadata_infrastructure_id="string",
freeform_tags={
"string": "string",
},
license_model="string",
db_servers=["string"],
cpu_core_count_per_node=0,
autonomous_data_storage_size_in_tbs=0,
is_local_backup_enabled=False,
is_mtls_enabled=False,
defined_tags={
"string": "string",
},
maintenance_window_details=[oci.database.AutonomousVmClusterMaintenanceWindowDetailArgs(
custom_action_timeout_in_mins=0,
days_of_weeks=[oci.database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs(
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.AutonomousVmClusterMaintenanceWindowDetailMonthArgs(
name="string",
)],
patching_mode="string",
preference="string",
skip_rus=[False],
weeks_of_months=[0],
)],
memory_per_oracle_compute_unit_in_gbs=0,
scan_listener_port_non_tls=0,
scan_listener_port_tls=0,
time_zone="string",
total_container_databases=0,
compute_model="string")
const autonomousVmClusterResource = new oci.database.AutonomousVmCluster("autonomousVmClusterResource", {
displayName: "string",
compartmentId: "string",
vmClusterNetworkId: "string",
exadataInfrastructureId: "string",
freeformTags: {
string: "string",
},
licenseModel: "string",
dbServers: ["string"],
cpuCoreCountPerNode: 0,
autonomousDataStorageSizeInTbs: 0,
isLocalBackupEnabled: false,
isMtlsEnabled: false,
definedTags: {
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],
}],
memoryPerOracleComputeUnitInGbs: 0,
scanListenerPortNonTls: 0,
scanListenerPortTls: 0,
timeZone: "string",
totalContainerDatabases: 0,
computeModel: "string",
});
type: oci:Database:AutonomousVmCluster
properties:
autonomousDataStorageSizeInTbs: 0
compartmentId: string
computeModel: string
cpuCoreCountPerNode: 0
dbServers:
- string
definedTags:
string: string
displayName: string
exadataInfrastructureId: string
freeformTags:
string: string
isLocalBackupEnabled: false
isMtlsEnabled: 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
scanListenerPortNonTls: 0
scanListenerPortTls: 0
timeZone: string
totalContainerDatabases: 0
vmClusterNetworkId: string
AutonomousVmCluster 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 AutonomousVmCluster resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** 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
- Autonomous
Data doubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- Compute
Model string - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- Db
Servers List<string> - The list of OCIDs of the Db 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.
- 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
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- Is
Mtls boolEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- License
Model string - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Maintenance
Window List<AutonomousDetails Vm Cluster Maintenance Window Detail> - (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.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- Time
Zone string - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- Total
Container intDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** 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
- Autonomous
Data float64Storage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- Compute
Model string - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- Db
Servers []string - The list of OCIDs of the Db 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.
- 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
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- Is
Mtls boolEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- License
Model string - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Maintenance
Window []AutonomousDetails Vm Cluster Maintenance Window Detail 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.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- Time
Zone string - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- Total
Container intDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** 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
- autonomous
Data DoubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- compute
Model String - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu
Core IntegerCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- db
Servers List<String> - The list of OCIDs of the Db 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.
- 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
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is
Mtls BooleanEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- license
Model String - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- maintenance
Window List<AutonomousDetails Vm Cluster Maintenance Window Detail> - (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.
- scan
Listener IntegerPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- scan
Listener IntegerPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- time
Zone String - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total
Container IntegerDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** 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
- autonomous
Data numberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- compute
Model string - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu
Core numberCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- db
Servers string[] - The list of OCIDs of the Db 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.
- {[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
Local booleanBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is
Mtls booleanEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- license
Model string - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- maintenance
Window AutonomousDetails Vm Cluster Maintenance Window Detail[] - (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.
- scan
Listener numberPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- scan
Listener numberPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- time
Zone string - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total
Container numberDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- compartment_
id str - (Updatable) The OCID of the compartment.
- display_
name str - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata_
infrastructure_ strid - The OCID of the Exadata infrastructure.
- vm_
cluster_ strnetwork_ id The OCID of the VM cluster network.
** 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
- autonomous_
data_ floatstorage_ size_ in_ tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- compute_
model str - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu_
core_ intcount_ per_ node - (Updatable) The number of CPU cores to enable per VM cluster node.
- db_
servers Sequence[str] - The list of OCIDs of the Db 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.
- 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_
local_ boolbackup_ enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is_
mtls_ boolenabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- license_
model str - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- maintenance_
window_ Sequence[database.details Autonomous Vm Cluster Maintenance Window Detail 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.
- scan_
listener_ intport_ non_ tls - The SCAN Listener Non TLS port number. Default value is 1521.
- scan_
listener_ intport_ tls - The SCAN Listener TLS port number. Default value is 2484.
- time_
zone str - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total_
container_ intdatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** 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
- autonomous
Data NumberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- compute
Model String - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu
Core NumberCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- db
Servers List<String> - The list of OCIDs of the Db servers.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is
Mtls BooleanEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- license
Model String - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- maintenance
Window List<Property Map>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.
- scan
Listener NumberPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- scan
Listener NumberPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- time
Zone String - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total
Container NumberDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the AutonomousVmCluster resource produces the following output properties:
- Autonomous
Data doubleStorage Percentage - 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 int - The numnber of CPU cores available.
- Available
Data doubleStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - Cpu
Percentage double - Cpus
Enabled int - The number of enabled CPU cores.
- Cpus
Lowest intScaled Value - Data
Storage doubleSize In Gb - Data
Storage doubleSize In Tbs - The total data storage allocated in TBs
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Exadata
Storage doubleIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage(in TBs) can be scaled down.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Windows List<AutonomousVm 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 nodes in the Autonomous VM Cluster.
- Non
Provisionable intAutonomous Container Databases - Ocpus
Enabled double - The number of enabled OCPU cores.
- Provisionable
Autonomous intContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 int - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- Reserved
Cpus double - The number of CPUs reserved in an Autonomous VM Cluster.
- State string
- The current state of the Autonomous VM cluster.
- Time
Created string - The date and time that the Autonomous VM cluster was created.
- Time
Database stringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- Time
Ords stringCertificate Expires - The date and time of ORDS certificate expiration.
- Total
Autonomous doubleData Storage In Tbs
- Autonomous
Data float64Storage Percentage - 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 int - The numnber of CPU cores available.
- Available
Data float64Storage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - Cpu
Percentage float64 - Cpus
Enabled int - The number of enabled CPU cores.
- Cpus
Lowest intScaled Value - Data
Storage float64Size In Gb - Data
Storage float64Size In Tbs - The total data storage allocated in TBs
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Exadata
Storage float64In Tbs Lowest Scaled Value - The lowest value to which exadataStorage(in TBs) can be scaled down.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Windows []AutonomousVm 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 nodes in the Autonomous VM Cluster.
- Non
Provisionable intAutonomous Container Databases - Ocpus
Enabled float64 - The number of enabled OCPU cores.
- Provisionable
Autonomous intContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 int - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- Reserved
Cpus float64 - The number of CPUs reserved in an Autonomous VM Cluster.
- State string
- The current state of the Autonomous VM cluster.
- Time
Created string - The date and time that the Autonomous VM cluster was created.
- Time
Database stringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- Time
Ords stringCertificate Expires - The date and time of ORDS certificate expiration.
- Total
Autonomous float64Data Storage In Tbs
- autonomous
Data DoubleStorage Percentage - 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 Integer - The numnber of CPU cores available.
- available
Data DoubleStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - cpu
Percentage Double - cpus
Enabled Integer - The number of enabled CPU cores.
- cpus
Lowest IntegerScaled Value - data
Storage DoubleSize In Gb - data
Storage DoubleSize In Tbs - The total data storage allocated in TBs
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- exadata
Storage DoubleIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage(in TBs) can be scaled down.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Windows List<AutonomousVm 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 nodes in the Autonomous VM Cluster.
- non
Provisionable IntegerAutonomous Container Databases - ocpus
Enabled Double - The number of enabled OCPU cores.
- provisionable
Autonomous IntegerContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 Integer - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- reserved
Cpus Double - The number of CPUs reserved in an Autonomous VM Cluster.
- state String
- The current state of the Autonomous VM cluster.
- time
Created String - The date and time that the Autonomous VM cluster was created.
- time
Database StringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- time
Ords StringCertificate Expires - The date and time of ORDS certificate expiration.
- total
Autonomous DoubleData Storage In Tbs
- autonomous
Data numberStorage Percentage - 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 - The numnber of CPU cores available.
- available
Data numberStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - cpu
Percentage number - cpus
Enabled number - The number of enabled CPU cores.
- cpus
Lowest numberScaled Value - data
Storage numberSize In Gb - data
Storage numberSize In Tbs - The total data storage allocated in TBs
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- exadata
Storage numberIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage(in TBs) can be scaled down.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Maintenance stringRun Id - The OCID of the last maintenance run.
- lifecycle
Details string - Additional information about the current lifecycle state.
- maintenance
Windows AutonomousVm 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 nodes in the Autonomous VM Cluster.
- non
Provisionable numberAutonomous Container Databases - ocpus
Enabled number - The number of enabled OCPU cores.
- provisionable
Autonomous numberContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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.
- state string
- The current state of the Autonomous VM cluster.
- time
Created string - The date and time that the Autonomous VM cluster was created.
- time
Database stringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- time
Ords stringCertificate Expires - The date and time of ORDS certificate expiration.
- total
Autonomous numberData Storage In Tbs
- autonomous_
data_ floatstorage_ percentage - 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 int - The numnber of CPU cores available.
- available_
data_ floatstorage_ size_ in_ tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - cpu_
percentage float - cpus_
enabled int - The number of enabled CPU cores.
- cpus_
lowest_ intscaled_ value - data_
storage_ floatsize_ in_ gb - data_
storage_ floatsize_ in_ tbs - The total data storage allocated in TBs
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- exadata_
storage_ floatin_ tbs_ lowest_ scaled_ value - The lowest value to which exadataStorage(in TBs) can be scaled down.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
maintenance_ strrun_ id - The OCID of the last maintenance run.
- lifecycle_
details str - Additional information about the current lifecycle state.
- maintenance_
windows Sequence[database.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 nodes in the Autonomous VM Cluster.
- non_
provisionable_ intautonomous_ container_ databases - ocpus_
enabled float - The number of enabled OCPU cores.
- provisionable_
autonomous_ intcontainer_ databases - Deprecated. Use field totalContainerDatabases.
- 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 int - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- reserved_
cpus float - The number of CPUs reserved in an Autonomous VM Cluster.
- state str
- The current state of the Autonomous VM cluster.
- time_
created str - The date and time that the Autonomous VM cluster was created.
- time_
database_ strssl_ certificate_ expires - The date and time of Database SSL certificate expiration.
- time_
ords_ strcertificate_ expires - The date and time of ORDS certificate expiration.
- total_
autonomous_ floatdata_ storage_ in_ tbs
- autonomous
Data NumberStorage Percentage - 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 - The numnber of CPU cores available.
- available
Data NumberStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - cpu
Percentage Number - cpus
Enabled Number - The number of enabled CPU cores.
- cpus
Lowest NumberScaled Value - data
Storage NumberSize In Gb - data
Storage NumberSize In Tbs - The total data storage allocated in TBs
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- exadata
Storage NumberIn Tbs Lowest Scaled Value - The lowest value to which exadataStorage(in TBs) can be scaled down.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- 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 nodes in the Autonomous VM Cluster.
- non
Provisionable NumberAutonomous Container Databases - ocpus
Enabled Number - The number of enabled OCPU cores.
- provisionable
Autonomous NumberContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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.
- state String
- The current state of the Autonomous VM cluster.
- time
Created String - The date and time that the Autonomous VM cluster was created.
- time
Database StringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- time
Ords StringCertificate Expires - The date and time of ORDS certificate expiration.
- total
Autonomous NumberData Storage In Tbs
Look up Existing AutonomousVmCluster Resource
Get an existing AutonomousVmCluster 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?: AutonomousVmClusterState, opts?: CustomResourceOptions): AutonomousVmCluster
@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,
available_autonomous_data_storage_size_in_tbs: Optional[float] = None,
available_container_databases: Optional[int] = None,
available_cpus: Optional[int] = None,
available_data_storage_size_in_tbs: Optional[float] = None,
compartment_id: Optional[str] = None,
compute_model: Optional[str] = None,
cpu_core_count_per_node: Optional[int] = None,
cpu_percentage: Optional[float] = None,
cpus_enabled: Optional[int] = None,
cpus_lowest_scaled_value: Optional[int] = 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,
display_name: Optional[str] = None,
exadata_infrastructure_id: Optional[str] = None,
exadata_storage_in_tbs_lowest_scaled_value: Optional[float] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_local_backup_enabled: Optional[bool] = None,
is_mtls_enabled: Optional[bool] = None,
last_maintenance_run_id: Optional[str] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
maintenance_window_details: Optional[Sequence[_database.AutonomousVmClusterMaintenanceWindowDetailArgs]] = None,
maintenance_windows: Optional[Sequence[_database.AutonomousVmClusterMaintenanceWindowArgs]] = 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,
ocpus_enabled: Optional[float] = None,
provisionable_autonomous_container_databases: Optional[int] = None,
provisioned_autonomous_container_databases: Optional[int] = None,
provisioned_cpus: Optional[float] = None,
reclaimable_cpus: Optional[int] = None,
reserved_cpus: Optional[float] = None,
scan_listener_port_non_tls: Optional[int] = None,
scan_listener_port_tls: Optional[int] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_database_ssl_certificate_expires: Optional[str] = None,
time_ords_certificate_expires: Optional[str] = None,
time_zone: Optional[str] = None,
total_autonomous_data_storage_in_tbs: Optional[float] = None,
total_container_databases: Optional[int] = None,
vm_cluster_network_id: Optional[str] = None) -> AutonomousVmCluster
func GetAutonomousVmCluster(ctx *Context, name string, id IDInput, state *AutonomousVmClusterState, opts ...ResourceOption) (*AutonomousVmCluster, error)
public static AutonomousVmCluster Get(string name, Input<string> id, AutonomousVmClusterState? state, CustomResourceOptions? opts = null)
public static AutonomousVmCluster get(String name, Output<String> id, AutonomousVmClusterState 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 - Autonomous
Data doubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- 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 int - The numnber of CPU cores available.
- Available
Data doubleStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Model string - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- Cpu
Percentage double - Cpus
Enabled int - The number of enabled CPU cores.
- Cpus
Lowest intScaled Value - Data
Storage doubleSize In Gb - Data
Storage doubleSize In Tbs - The total data storage allocated in TBs
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Servers List<string> - The list of OCIDs of the Db 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.
- Display
Name string - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- 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"}
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- Is
Mtls boolEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- License
Model string - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Window List<AutonomousDetails Vm Cluster Maintenance Window Detail> - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Maintenance
Windows List<AutonomousVm 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 nodes in the Autonomous VM Cluster.
- Non
Provisionable intAutonomous Container Databases - Ocpus
Enabled double - The number of enabled OCPU cores.
- Provisionable
Autonomous intContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 int - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- Reserved
Cpus double - The number of CPUs reserved in an Autonomous VM Cluster.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- State string
- The current state of the Autonomous VM cluster.
- Time
Created string - The date and time that the Autonomous VM cluster was created.
- Time
Database stringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- Time
Ords stringCertificate Expires - The date and time of ORDS certificate expiration.
- Time
Zone string - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- Total
Autonomous doubleData Storage In Tbs - Total
Container intDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** 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
- Autonomous
Data float64Storage Percentage - Autonomous
Data float64Storage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- 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 int - The numnber of CPU cores available.
- Available
Data float64Storage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Model string - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- Cpu
Core intCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- Cpu
Percentage float64 - Cpus
Enabled int - The number of enabled CPU cores.
- Cpus
Lowest intScaled Value - Data
Storage float64Size In Gb - Data
Storage float64Size In Tbs - The total data storage allocated in TBs
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Servers []string - The list of OCIDs of the Db 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.
- Display
Name string - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- 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"}
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- Is
Mtls boolEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- License
Model string - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Window []AutonomousDetails Vm Cluster Maintenance Window Detail Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Maintenance
Windows []AutonomousVm 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 nodes in the Autonomous VM Cluster.
- Non
Provisionable intAutonomous Container Databases - Ocpus
Enabled float64 - The number of enabled OCPU cores.
- Provisionable
Autonomous intContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 int - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- Reserved
Cpus float64 - The number of CPUs reserved in an Autonomous VM Cluster.
- Scan
Listener intPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- Scan
Listener intPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- State string
- The current state of the Autonomous VM cluster.
- Time
Created string - The date and time that the Autonomous VM cluster was created.
- Time
Database stringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- Time
Ords stringCertificate Expires - The date and time of ORDS certificate expiration.
- Time
Zone string - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- Total
Autonomous float64Data Storage In Tbs - Total
Container intDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** 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
- autonomous
Data DoubleStorage Percentage - autonomous
Data DoubleStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- 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 Integer - The numnber of CPU cores available.
- available
Data DoubleStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Model String - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu
Core IntegerCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- cpu
Percentage Double - cpus
Enabled Integer - The number of enabled CPU cores.
- cpus
Lowest IntegerScaled Value - data
Storage DoubleSize In Gb - data
Storage DoubleSize In Tbs - The total data storage allocated in TBs
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers List<String> - The list of OCIDs of the Db 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.
- display
Name String - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- 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"}
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is
Mtls BooleanEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- license
Model String - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Window List<AutonomousDetails Vm Cluster Maintenance Window Detail> - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows List<AutonomousVm 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 nodes in the Autonomous VM Cluster.
- non
Provisionable IntegerAutonomous Container Databases - ocpus
Enabled Double - The number of enabled OCPU cores.
- provisionable
Autonomous IntegerContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 Integer - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- reserved
Cpus Double - The number of CPUs reserved in an Autonomous VM Cluster.
- scan
Listener IntegerPort Non Tls - The SCAN Listener Non TLS port number. Default value is 1521.
- scan
Listener IntegerPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- state String
- The current state of the Autonomous VM cluster.
- time
Created String - The date and time that the Autonomous VM cluster was created.
- time
Database StringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- time
Ords StringCertificate Expires - The date and time of ORDS certificate expiration.
- time
Zone String - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total
Autonomous DoubleData Storage In Tbs - total
Container IntegerDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** 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
- autonomous
Data numberStorage Percentage - autonomous
Data numberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- 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 - The numnber of CPU cores available.
- available
Data numberStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - compartment
Id string - (Updatable) The OCID of the compartment.
- compute
Model string - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu
Core numberCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- cpu
Percentage number - cpus
Enabled number - The number of enabled CPU cores.
- cpus
Lowest numberScaled Value - data
Storage numberSize In Gb - data
Storage numberSize In Tbs - The total data storage allocated in TBs
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers string[] - The list of OCIDs of the Db 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.
- display
Name string - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- 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"}
- is
Local booleanBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is
Mtls booleanEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- last
Maintenance stringRun Id - The OCID of the last maintenance run.
- license
Model string - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details string - Additional information about the current lifecycle state.
- maintenance
Window AutonomousDetails Vm Cluster Maintenance Window Detail[] - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows AutonomousVm 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 nodes in the Autonomous VM Cluster.
- non
Provisionable numberAutonomous Container Databases - ocpus
Enabled number - The number of enabled OCPU cores.
- provisionable
Autonomous numberContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 number. Default value is 1521.
- scan
Listener numberPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- state string
- The current state of the Autonomous VM cluster.
- time
Created string - The date and time that the Autonomous VM cluster was created.
- time
Database stringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- time
Ords stringCertificate Expires - The date and time of ORDS certificate expiration.
- time
Zone string - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total
Autonomous numberData Storage In Tbs - total
Container numberDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** 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
- autonomous_
data_ floatstorage_ percentage - autonomous_
data_ floatstorage_ size_ in_ tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- 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 int - The numnber of CPU cores available.
- available_
data_ floatstorage_ size_ in_ tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - compartment_
id str - (Updatable) The OCID of the compartment.
- compute_
model str - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu_
core_ intcount_ per_ node - (Updatable) The number of CPU cores to enable per VM cluster node.
- cpu_
percentage float - cpus_
enabled int - The number of enabled CPU cores.
- cpus_
lowest_ intscaled_ value - data_
storage_ floatsize_ in_ gb - data_
storage_ floatsize_ in_ tbs - The total data storage allocated in TBs
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- db_
servers Sequence[str] - The list of OCIDs of the Db 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.
- display_
name str - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata_
infrastructure_ strid - The OCID of the Exadata infrastructure.
- 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"}
- is_
local_ boolbackup_ enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is_
mtls_ boolenabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- last_
maintenance_ strrun_ id - The OCID of the last maintenance run.
- license_
model str - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle_
details str - Additional information about the current lifecycle state.
- maintenance_
window_ Sequence[database.details Autonomous Vm Cluster Maintenance Window Detail Args] - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance_
windows Sequence[database.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 nodes in the Autonomous VM Cluster.
- non_
provisionable_ intautonomous_ container_ databases - ocpus_
enabled float - The number of enabled OCPU cores.
- provisionable_
autonomous_ intcontainer_ databases - Deprecated. Use field totalContainerDatabases.
- 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 int - For Autonomous Databases on Dedicated Exadata Infrastructure:
- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
- reserved_
cpus float - The number of CPUs reserved in an Autonomous VM Cluster.
- scan_
listener_ intport_ non_ tls - The SCAN Listener Non TLS port number. Default value is 1521.
- scan_
listener_ intport_ tls - The SCAN Listener TLS port number. Default value is 2484.
- state str
- The current state of the Autonomous VM cluster.
- time_
created str - The date and time that the Autonomous VM cluster was created.
- time_
database_ strssl_ certificate_ expires - The date and time of Database SSL certificate expiration.
- time_
ords_ strcertificate_ expires - The date and time of ORDS certificate expiration.
- time_
zone str - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total_
autonomous_ floatdata_ storage_ in_ tbs - total_
container_ intdatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- vm_
cluster_ strnetwork_ id The OCID of the VM cluster network.
** 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
- autonomous
Data NumberStorage Percentage - autonomous
Data NumberStorage Size In Tbs - (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- 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 - The numnber of CPU cores available.
- available
Data NumberStorage Size In Tbs - Deprecated. Use
availableAutonomousDataStorageSizeInTBs
for Autonomous Databases' data storage availability in TBs. - compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Model String - The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu
Core NumberCount Per Node - (Updatable) The number of CPU cores to enable per VM cluster node.
- cpu
Percentage Number - cpus
Enabled Number - The number of enabled CPU cores.
- cpus
Lowest NumberScaled Value - data
Storage NumberSize In Gb - data
Storage NumberSize In Tbs - The total data storage allocated in TBs
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers List<String> - The list of OCIDs of the Db servers.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- 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"}
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.
- is
Mtls BooleanEnabled - Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- license
Model String - (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Window List<Property Map>Details - (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 nodes in the Autonomous VM Cluster.
- non
Provisionable NumberAutonomous Container Databases - ocpus
Enabled Number - The number of enabled OCPU cores.
- provisionable
Autonomous NumberContainer Databases - Deprecated. Use field totalContainerDatabases.
- 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 number. Default value is 1521.
- scan
Listener NumberPort Tls - The SCAN Listener TLS port number. Default value is 2484.
- state String
- The current state of the Autonomous VM cluster.
- time
Created String - The date and time that the Autonomous VM cluster was created.
- time
Database StringSsl Certificate Expires - The date and time of Database SSL certificate expiration.
- time
Ords StringCertificate Expires - The date and time of ORDS certificate expiration.
- time
Zone String - The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total
Autonomous NumberData Storage In Tbs - total
Container NumberDatabases - (Updatable) The total number of Autonomous Container Databases that can be created.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** 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
Supporting Types
AutonomousVmClusterMaintenanceWindow, AutonomousVmClusterMaintenanceWindowArgs
- Custom
Action intTimeout In Mins - Days
Of List<AutonomousWeeks 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 - Is
Monthly boolPatching Enabled - 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<Autonomous
Vm Cluster Maintenance Window Month> - 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
- 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 - Days
Of []AutonomousWeeks 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 - Is
Monthly boolPatching Enabled - 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
[]Autonomous
Vm Cluster Maintenance Window Month - 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
- 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 - days
Of List<AutonomousWeeks 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 - is
Monthly BooleanPatching Enabled - 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<Autonomous
Vm Cluster Maintenance Window Month> - 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
- 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 - days
Of AutonomousWeeks 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 - is
Monthly booleanPatching Enabled - 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
Autonomous
Vm Cluster Maintenance Window Month[] - 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
- 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 - days_
of_ Sequence[database.weeks 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 - is_
monthly_ boolpatching_ enabled - 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.
Autonomous Vm Cluster Maintenance Window Month] - 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
- 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 - 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 - is
Monthly BooleanPatching Enabled - 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 (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
- 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.
AutonomousVmClusterMaintenanceWindowDaysOfWeek, AutonomousVmClusterMaintenanceWindowDaysOfWeekArgs
- 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.
AutonomousVmClusterMaintenanceWindowDetail, AutonomousVmClusterMaintenanceWindowDetailArgs
- Custom
Action intTimeout In Mins - Days
Of List<AutonomousWeeks Vm Cluster Maintenance Window Detail 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 - Is
Monthly boolPatching Enabled - 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<Autonomous
Vm Cluster Maintenance Window Detail 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 - Days
Of []AutonomousWeeks Vm Cluster Maintenance Window Detail 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 - Is
Monthly boolPatching Enabled - 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
[]Autonomous
Vm Cluster Maintenance Window Detail 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 - days
Of List<AutonomousWeeks Vm Cluster Maintenance Window Detail 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 - is
Monthly BooleanPatching Enabled - 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<Autonomous
Vm Cluster Maintenance Window Detail 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 - days
Of AutonomousWeeks Vm Cluster Maintenance Window Detail 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 - is
Monthly booleanPatching Enabled - 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
Autonomous
Vm Cluster Maintenance Window Detail 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 - days_
of_ Sequence[database.weeks Autonomous Vm Cluster Maintenance Window Detail 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 - is_
monthly_ boolpatching_ enabled - 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.
Autonomous Vm Cluster Maintenance Window Detail 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 - 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 - is
Monthly BooleanPatching Enabled - 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.
AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek, AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs
- 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.
AutonomousVmClusterMaintenanceWindowDetailMonth, AutonomousVmClusterMaintenanceWindowDetailMonthArgs
- 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.
AutonomousVmClusterMaintenanceWindowMonth, AutonomousVmClusterMaintenanceWindowMonthArgs
- 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
AutonomousVmClusters can be imported using the id
, e.g.
$ pulumi import oci:Database/autonomousVmCluster:AutonomousVmCluster test_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.