oci.Database.AutonomousExadataInfrastructure
Explore with Pulumi AI
This resource provides the Autonomous Exadata Infrastructure resource in Oracle Cloud Infrastructure Database service.
Deprecated To create a new Autonomous Database system on dedicated Exadata Infrastructure, use the CreateCloudExadataInfrastructure and CreateCloudAutonomousVmCluster operations instead. Note that to create an Autonomous VM cluster, you must have an existing Exadata Infrastructure resource to contain the VM cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousExadataInfrastructure = new oci.database.AutonomousExadataInfrastructure("test_autonomous_exadata_infrastructure", {
availabilityDomain: autonomousExadataInfrastructureAvailabilityDomain,
compartmentId: compartmentId,
shape: autonomousExadataInfrastructureShape,
subnetId: testSubnet.id,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: autonomousExadataInfrastructureDisplayName,
domain: autonomousExadataInfrastructureDomain,
freeformTags: {
Department: "Finance",
},
licenseModel: autonomousExadataInfrastructureLicenseModel,
maintenanceWindowDetails: {
customActionTimeoutInMins: autonomousExadataInfrastructureMaintenanceWindowDetailsCustomActionTimeoutInMins,
daysOfWeeks: [{
name: autonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekName,
}],
hoursOfDays: autonomousExadataInfrastructureMaintenanceWindowDetailsHoursOfDay,
isCustomActionTimeoutEnabled: autonomousExadataInfrastructureMaintenanceWindowDetailsIsCustomActionTimeoutEnabled,
isMonthlyPatchingEnabled: autonomousExadataInfrastructureMaintenanceWindowDetailsIsMonthlyPatchingEnabled,
leadTimeInWeeks: autonomousExadataInfrastructureMaintenanceWindowDetailsLeadTimeInWeeks,
months: [{
name: autonomousExadataInfrastructureMaintenanceWindowDetailsMonthsName,
}],
patchingMode: autonomousExadataInfrastructureMaintenanceWindowDetailsPatchingMode,
preference: autonomousExadataInfrastructureMaintenanceWindowDetailsPreference,
weeksOfMonths: autonomousExadataInfrastructureMaintenanceWindowDetailsWeeksOfMonth,
},
nsgIds: autonomousExadataInfrastructureNsgIds,
});
import pulumi
import pulumi_oci as oci
test_autonomous_exadata_infrastructure = oci.database.AutonomousExadataInfrastructure("test_autonomous_exadata_infrastructure",
availability_domain=autonomous_exadata_infrastructure_availability_domain,
compartment_id=compartment_id,
shape=autonomous_exadata_infrastructure_shape,
subnet_id=test_subnet["id"],
defined_tags={
"Operations.CostCenter": "42",
},
display_name=autonomous_exadata_infrastructure_display_name,
domain=autonomous_exadata_infrastructure_domain,
freeform_tags={
"Department": "Finance",
},
license_model=autonomous_exadata_infrastructure_license_model,
maintenance_window_details={
"custom_action_timeout_in_mins": autonomous_exadata_infrastructure_maintenance_window_details_custom_action_timeout_in_mins,
"days_of_weeks": [{
"name": autonomous_exadata_infrastructure_maintenance_window_details_days_of_week_name,
}],
"hours_of_days": autonomous_exadata_infrastructure_maintenance_window_details_hours_of_day,
"is_custom_action_timeout_enabled": autonomous_exadata_infrastructure_maintenance_window_details_is_custom_action_timeout_enabled,
"is_monthly_patching_enabled": autonomous_exadata_infrastructure_maintenance_window_details_is_monthly_patching_enabled,
"lead_time_in_weeks": autonomous_exadata_infrastructure_maintenance_window_details_lead_time_in_weeks,
"months": [{
"name": autonomous_exadata_infrastructure_maintenance_window_details_months_name,
}],
"patching_mode": autonomous_exadata_infrastructure_maintenance_window_details_patching_mode,
"preference": autonomous_exadata_infrastructure_maintenance_window_details_preference,
"weeks_of_months": autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month,
},
nsg_ids=autonomous_exadata_infrastructure_nsg_ids)
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.NewAutonomousExadataInfrastructure(ctx, "test_autonomous_exadata_infrastructure", &Database.AutonomousExadataInfrastructureArgs{
AvailabilityDomain: pulumi.Any(autonomousExadataInfrastructureAvailabilityDomain),
CompartmentId: pulumi.Any(compartmentId),
Shape: pulumi.Any(autonomousExadataInfrastructureShape),
SubnetId: pulumi.Any(testSubnet.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(autonomousExadataInfrastructureDisplayName),
Domain: pulumi.Any(autonomousExadataInfrastructureDomain),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
LicenseModel: pulumi.Any(autonomousExadataInfrastructureLicenseModel),
MaintenanceWindowDetails: &database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs{
CustomActionTimeoutInMins: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsCustomActionTimeoutInMins),
DaysOfWeeks: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArray{
&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs{
Name: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekName),
},
},
HoursOfDays: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsHoursOfDay),
IsCustomActionTimeoutEnabled: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsIsCustomActionTimeoutEnabled),
IsMonthlyPatchingEnabled: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsIsMonthlyPatchingEnabled),
LeadTimeInWeeks: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsLeadTimeInWeeks),
Months: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArray{
&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs{
Name: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsMonthsName),
},
},
PatchingMode: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsPatchingMode),
Preference: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsPreference),
WeeksOfMonths: pulumi.Any(autonomousExadataInfrastructureMaintenanceWindowDetailsWeeksOfMonth),
},
NsgIds: pulumi.Any(autonomousExadataInfrastructureNsgIds),
})
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 testAutonomousExadataInfrastructure = new Oci.Database.AutonomousExadataInfrastructure("test_autonomous_exadata_infrastructure", new()
{
AvailabilityDomain = autonomousExadataInfrastructureAvailabilityDomain,
CompartmentId = compartmentId,
Shape = autonomousExadataInfrastructureShape,
SubnetId = testSubnet.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = autonomousExadataInfrastructureDisplayName,
Domain = autonomousExadataInfrastructureDomain,
FreeformTags =
{
{ "Department", "Finance" },
},
LicenseModel = autonomousExadataInfrastructureLicenseModel,
MaintenanceWindowDetails = new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
{
CustomActionTimeoutInMins = autonomousExadataInfrastructureMaintenanceWindowDetailsCustomActionTimeoutInMins,
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs
{
Name = autonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekName,
},
},
HoursOfDays = autonomousExadataInfrastructureMaintenanceWindowDetailsHoursOfDay,
IsCustomActionTimeoutEnabled = autonomousExadataInfrastructureMaintenanceWindowDetailsIsCustomActionTimeoutEnabled,
IsMonthlyPatchingEnabled = autonomousExadataInfrastructureMaintenanceWindowDetailsIsMonthlyPatchingEnabled,
LeadTimeInWeeks = autonomousExadataInfrastructureMaintenanceWindowDetailsLeadTimeInWeeks,
Months = new[]
{
new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs
{
Name = autonomousExadataInfrastructureMaintenanceWindowDetailsMonthsName,
},
},
PatchingMode = autonomousExadataInfrastructureMaintenanceWindowDetailsPatchingMode,
Preference = autonomousExadataInfrastructureMaintenanceWindowDetailsPreference,
WeeksOfMonths = autonomousExadataInfrastructureMaintenanceWindowDetailsWeeksOfMonth,
},
NsgIds = autonomousExadataInfrastructureNsgIds,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.AutonomousExadataInfrastructure;
import com.pulumi.oci.Database.AutonomousExadataInfrastructureArgs;
import com.pulumi.oci.Database.inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs;
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 testAutonomousExadataInfrastructure = new AutonomousExadataInfrastructure("testAutonomousExadataInfrastructure", AutonomousExadataInfrastructureArgs.builder()
.availabilityDomain(autonomousExadataInfrastructureAvailabilityDomain)
.compartmentId(compartmentId)
.shape(autonomousExadataInfrastructureShape)
.subnetId(testSubnet.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(autonomousExadataInfrastructureDisplayName)
.domain(autonomousExadataInfrastructureDomain)
.freeformTags(Map.of("Department", "Finance"))
.licenseModel(autonomousExadataInfrastructureLicenseModel)
.maintenanceWindowDetails(AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs.builder()
.customActionTimeoutInMins(autonomousExadataInfrastructureMaintenanceWindowDetailsCustomActionTimeoutInMins)
.daysOfWeeks(AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs.builder()
.name(autonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekName)
.build())
.hoursOfDays(autonomousExadataInfrastructureMaintenanceWindowDetailsHoursOfDay)
.isCustomActionTimeoutEnabled(autonomousExadataInfrastructureMaintenanceWindowDetailsIsCustomActionTimeoutEnabled)
.isMonthlyPatchingEnabled(autonomousExadataInfrastructureMaintenanceWindowDetailsIsMonthlyPatchingEnabled)
.leadTimeInWeeks(autonomousExadataInfrastructureMaintenanceWindowDetailsLeadTimeInWeeks)
.months(AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs.builder()
.name(autonomousExadataInfrastructureMaintenanceWindowDetailsMonthsName)
.build())
.patchingMode(autonomousExadataInfrastructureMaintenanceWindowDetailsPatchingMode)
.preference(autonomousExadataInfrastructureMaintenanceWindowDetailsPreference)
.weeksOfMonths(autonomousExadataInfrastructureMaintenanceWindowDetailsWeeksOfMonth)
.build())
.nsgIds(autonomousExadataInfrastructureNsgIds)
.build());
}
}
resources:
testAutonomousExadataInfrastructure:
type: oci:Database:AutonomousExadataInfrastructure
name: test_autonomous_exadata_infrastructure
properties:
availabilityDomain: ${autonomousExadataInfrastructureAvailabilityDomain}
compartmentId: ${compartmentId}
shape: ${autonomousExadataInfrastructureShape}
subnetId: ${testSubnet.id}
definedTags:
Operations.CostCenter: '42'
displayName: ${autonomousExadataInfrastructureDisplayName}
domain: ${autonomousExadataInfrastructureDomain}
freeformTags:
Department: Finance
licenseModel: ${autonomousExadataInfrastructureLicenseModel}
maintenanceWindowDetails:
customActionTimeoutInMins: ${autonomousExadataInfrastructureMaintenanceWindowDetailsCustomActionTimeoutInMins}
daysOfWeeks:
- name: ${autonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekName}
hoursOfDays: ${autonomousExadataInfrastructureMaintenanceWindowDetailsHoursOfDay}
isCustomActionTimeoutEnabled: ${autonomousExadataInfrastructureMaintenanceWindowDetailsIsCustomActionTimeoutEnabled}
isMonthlyPatchingEnabled: ${autonomousExadataInfrastructureMaintenanceWindowDetailsIsMonthlyPatchingEnabled}
leadTimeInWeeks: ${autonomousExadataInfrastructureMaintenanceWindowDetailsLeadTimeInWeeks}
months:
- name: ${autonomousExadataInfrastructureMaintenanceWindowDetailsMonthsName}
patchingMode: ${autonomousExadataInfrastructureMaintenanceWindowDetailsPatchingMode}
preference: ${autonomousExadataInfrastructureMaintenanceWindowDetailsPreference}
weeksOfMonths: ${autonomousExadataInfrastructureMaintenanceWindowDetailsWeeksOfMonth}
nsgIds: ${autonomousExadataInfrastructureNsgIds}
Create AutonomousExadataInfrastructure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutonomousExadataInfrastructure(name: string, args: AutonomousExadataInfrastructureArgs, opts?: CustomResourceOptions);
@overload
def AutonomousExadataInfrastructure(resource_name: str,
args: AutonomousExadataInfrastructureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AutonomousExadataInfrastructure(resource_name: str,
opts: Optional[ResourceOptions] = None,
availability_domain: Optional[str] = None,
compartment_id: Optional[str] = None,
shape: Optional[str] = None,
subnet_id: Optional[str] = None,
create_async: Optional[bool] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
domain: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
license_model: Optional[str] = None,
maintenance_window_details: Optional[_database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs] = None,
nsg_ids: Optional[Sequence[str]] = None)
func NewAutonomousExadataInfrastructure(ctx *Context, name string, args AutonomousExadataInfrastructureArgs, opts ...ResourceOption) (*AutonomousExadataInfrastructure, error)
public AutonomousExadataInfrastructure(string name, AutonomousExadataInfrastructureArgs args, CustomResourceOptions? opts = null)
public AutonomousExadataInfrastructure(String name, AutonomousExadataInfrastructureArgs args)
public AutonomousExadataInfrastructure(String name, AutonomousExadataInfrastructureArgs args, CustomResourceOptions options)
type: oci:Database:AutonomousExadataInfrastructure
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 AutonomousExadataInfrastructureArgs
- 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 AutonomousExadataInfrastructureArgs
- 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 AutonomousExadataInfrastructureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutonomousExadataInfrastructureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutonomousExadataInfrastructureArgs
- 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 autonomousExadataInfrastructureResource = new Oci.Database.AutonomousExadataInfrastructure("autonomousExadataInfrastructureResource", new()
{
CompartmentId = "string",
Shape = "string",
SubnetId = "string",
CreateAsync = false,
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
Domain = "string",
FreeformTags =
{
{ "string", "string" },
},
LicenseModel = "string",
MaintenanceWindowDetails = new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
{
CustomActionTimeoutInMins = 0,
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs
{
Name = "string",
},
},
HoursOfDays = new[]
{
0,
},
IsCustomActionTimeoutEnabled = false,
IsMonthlyPatchingEnabled = false,
LeadTimeInWeeks = 0,
Months = new[]
{
new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs
{
Name = "string",
},
},
PatchingMode = "string",
Preference = "string",
SkipRus = new[]
{
false,
},
WeeksOfMonths = new[]
{
0,
},
},
NsgIds = new[]
{
"string",
},
});
example, err := Database.NewAutonomousExadataInfrastructure(ctx, "autonomousExadataInfrastructureResource", &Database.AutonomousExadataInfrastructureArgs{
CompartmentId: pulumi.String("string"),
Shape: pulumi.String("string"),
SubnetId: pulumi.String("string"),
CreateAsync: pulumi.Bool(false),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
Domain: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
LicenseModel: pulumi.String("string"),
MaintenanceWindowDetails: &database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs{
CustomActionTimeoutInMins: pulumi.Int(0),
DaysOfWeeks: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArray{
&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs{
Name: pulumi.String("string"),
},
},
HoursOfDays: pulumi.IntArray{
pulumi.Int(0),
},
IsCustomActionTimeoutEnabled: pulumi.Bool(false),
IsMonthlyPatchingEnabled: pulumi.Bool(false),
LeadTimeInWeeks: pulumi.Int(0),
Months: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArray{
&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs{
Name: pulumi.String("string"),
},
},
PatchingMode: pulumi.String("string"),
Preference: pulumi.String("string"),
SkipRus: pulumi.BoolArray{
pulumi.Bool(false),
},
WeeksOfMonths: pulumi.IntArray{
pulumi.Int(0),
},
},
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var autonomousExadataInfrastructureResource = new AutonomousExadataInfrastructure("autonomousExadataInfrastructureResource", AutonomousExadataInfrastructureArgs.builder()
.compartmentId("string")
.shape("string")
.subnetId("string")
.createAsync(false)
.definedTags(Map.of("string", "string"))
.displayName("string")
.domain("string")
.freeformTags(Map.of("string", "string"))
.licenseModel("string")
.maintenanceWindowDetails(AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs.builder()
.customActionTimeoutInMins(0)
.daysOfWeeks(AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs.builder()
.name("string")
.build())
.hoursOfDays(0)
.isCustomActionTimeoutEnabled(false)
.isMonthlyPatchingEnabled(false)
.leadTimeInWeeks(0)
.months(AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs.builder()
.name("string")
.build())
.patchingMode("string")
.preference("string")
.skipRus(false)
.weeksOfMonths(0)
.build())
.nsgIds("string")
.build());
autonomous_exadata_infrastructure_resource = oci.database.AutonomousExadataInfrastructure("autonomousExadataInfrastructureResource",
compartment_id="string",
shape="string",
subnet_id="string",
create_async=False,
defined_tags={
"string": "string",
},
display_name="string",
domain="string",
freeform_tags={
"string": "string",
},
license_model="string",
maintenance_window_details=oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs(
custom_action_timeout_in_mins=0,
days_of_weeks=[oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs(
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.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs(
name="string",
)],
patching_mode="string",
preference="string",
skip_rus=[False],
weeks_of_months=[0],
),
nsg_ids=["string"])
const autonomousExadataInfrastructureResource = new oci.database.AutonomousExadataInfrastructure("autonomousExadataInfrastructureResource", {
compartmentId: "string",
shape: "string",
subnetId: "string",
createAsync: false,
definedTags: {
string: "string",
},
displayName: "string",
domain: "string",
freeformTags: {
string: "string",
},
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],
},
nsgIds: ["string"],
});
type: oci:Database:AutonomousExadataInfrastructure
properties:
compartmentId: string
createAsync: false
definedTags:
string: string
displayName: string
domain: string
freeformTags:
string: string
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
nsgIds:
- string
shape: string
subnetId: string
AutonomousExadataInfrastructure 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 AutonomousExadataInfrastructure resource accepts the following input properties:
- Availability
Domain string - The availability domain where the Autonomous Exadata Infrastructure is located.
- Compartment
Id string - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- Shape string
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- Subnet
Id string The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- Create
Async bool - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- Domain string
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- 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"}
- License
Model string - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Nsg
Ids List<string> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Availability
Domain string - The availability domain where the Autonomous Exadata Infrastructure is located.
- Compartment
Id string - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- Shape string
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- Subnet
Id string The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- Create
Async bool - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- Domain string
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- 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"}
- License
Model string - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Nsg
Ids []string - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- availability
Domain String - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment
Id String - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- shape String
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- subnet
Id String The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- create
Async Boolean - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain String
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- 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"}
- license
Model String - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- availability
Domain string - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment
Id string - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- shape string
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- subnet
Id string The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- create
Async boolean - {[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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain string
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- {[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"}
- license
Model string - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- nsg
Ids string[] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- availability_
domain str - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment_
id str - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- shape str
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- subnet_
id str The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- create_
async bool - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain str
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- 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"}
- license_
model str - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- maintenance_
window_ database.details Autonomous Exadata Infrastructure Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- nsg_
ids Sequence[str] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- availability
Domain String - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment
Id String - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- shape String
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- subnet
Id String The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- create
Async Boolean - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain String
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- 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"}
- license
Model String - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- maintenance
Window Property MapDetails - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
Outputs
All input properties are implicitly available as output properties. Additionally, the AutonomousExadataInfrastructure resource produces the following output properties:
- Hostname string
- The host name for the Autonomous Exadata Infrastructure node.
- 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 of the Autonomous Exadata Infrastructure.
- Maintenance
Windows List<AutonomousExadata Infrastructure Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- State string
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- Time
Created string - The date and time the Autonomous Exadata Infrastructure was created.
- Zone
Id string - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- Hostname string
- The host name for the Autonomous Exadata Infrastructure node.
- 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 of the Autonomous Exadata Infrastructure.
- Maintenance
Windows []AutonomousExadata Infrastructure Maintenance Window - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- State string
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- Time
Created string - The date and time the Autonomous Exadata Infrastructure was created.
- Zone
Id string - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- hostname String
- The host name for the Autonomous Exadata Infrastructure node.
- 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 of the Autonomous Exadata Infrastructure.
- maintenance
Windows List<AutonomousExadata Infrastructure Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- state String
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- time
Created String - The date and time the Autonomous Exadata Infrastructure was created.
- zone
Id String - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- hostname string
- The host name for the Autonomous Exadata Infrastructure node.
- 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 of the Autonomous Exadata Infrastructure.
- maintenance
Windows AutonomousExadata Infrastructure Maintenance Window[] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next
Maintenance stringRun Id - The OCID of the next maintenance run.
- scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- state string
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- time
Created string - The date and time the Autonomous Exadata Infrastructure was created.
- zone
Id string - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- hostname str
- The host name for the Autonomous Exadata Infrastructure node.
- 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 of the Autonomous Exadata Infrastructure.
- maintenance_
windows Sequence[database.Autonomous Exadata Infrastructure Maintenance Window] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next_
maintenance_ strrun_ id - The OCID of the next maintenance run.
- scan_
dns_ strname - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- state str
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- time_
created str - The date and time the Autonomous Exadata Infrastructure was created.
- zone_
id str - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- hostname String
- The host name for the Autonomous Exadata Infrastructure node.
- 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 of the Autonomous Exadata Infrastructure.
- maintenance
Windows List<Property Map> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- state String
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- time
Created String - The date and time the Autonomous Exadata Infrastructure was created.
- zone
Id String - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
Look up Existing AutonomousExadataInfrastructure Resource
Get an existing AutonomousExadataInfrastructure 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?: AutonomousExadataInfrastructureState, opts?: CustomResourceOptions): AutonomousExadataInfrastructure
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
availability_domain: Optional[str] = None,
compartment_id: Optional[str] = None,
create_async: Optional[bool] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
domain: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
hostname: Optional[str] = None,
last_maintenance_run_id: Optional[str] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
maintenance_window_details: Optional[_database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs] = None,
maintenance_windows: Optional[Sequence[_database.AutonomousExadataInfrastructureMaintenanceWindowArgs]] = None,
next_maintenance_run_id: Optional[str] = None,
nsg_ids: Optional[Sequence[str]] = None,
scan_dns_name: Optional[str] = None,
shape: Optional[str] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
time_created: Optional[str] = None,
zone_id: Optional[str] = None) -> AutonomousExadataInfrastructure
func GetAutonomousExadataInfrastructure(ctx *Context, name string, id IDInput, state *AutonomousExadataInfrastructureState, opts ...ResourceOption) (*AutonomousExadataInfrastructure, error)
public static AutonomousExadataInfrastructure Get(string name, Input<string> id, AutonomousExadataInfrastructureState? state, CustomResourceOptions? opts = null)
public static AutonomousExadataInfrastructure get(String name, Output<String> id, AutonomousExadataInfrastructureState 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.
- Availability
Domain string - The availability domain where the Autonomous Exadata Infrastructure is located.
- Compartment
Id string - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- Create
Async bool - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- Domain string
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Hostname string
- The host name for the Autonomous Exadata Infrastructure node.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- License
Model string - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
- Maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Maintenance
Windows List<AutonomousExadata Infrastructure Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Nsg
Ids List<string> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- Shape string
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- State string
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- Subnet
Id string The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- Time
Created string - The date and time the Autonomous Exadata Infrastructure was created.
- Zone
Id string - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- Availability
Domain string - The availability domain where the Autonomous Exadata Infrastructure is located.
- Compartment
Id string - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- Create
Async bool - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- Domain string
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Hostname string
- The host name for the Autonomous Exadata Infrastructure node.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- License
Model string - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
- Maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Maintenance
Windows []AutonomousExadata Infrastructure Maintenance Window Args - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Nsg
Ids []string - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- Shape string
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- State string
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- Subnet
Id string The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- Time
Created string - The date and time the Autonomous Exadata Infrastructure was created.
- Zone
Id string - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- availability
Domain String - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment
Id String - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- create
Async Boolean - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain String
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname String
- The host name for the Autonomous Exadata Infrastructure node.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- license
Model String - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
- maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows List<AutonomousExadata Infrastructure Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- shape String
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- state String
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- subnet
Id String The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- time
Created String - The date and time the Autonomous Exadata Infrastructure was created.
- zone
Id String - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- availability
Domain string - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment
Id string - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- create
Async boolean - {[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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain string
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname string
- The host name for the Autonomous Exadata Infrastructure node.
- last
Maintenance stringRun Id - The OCID of the last maintenance run.
- license
Model string - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details string - Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
- maintenance
Window AutonomousDetails Exadata Infrastructure Maintenance Window Details - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows AutonomousExadata Infrastructure Maintenance Window[] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next
Maintenance stringRun Id - The OCID of the next maintenance run.
- nsg
Ids string[] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- shape string
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- state string
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- subnet
Id string The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- time
Created string - The date and time the Autonomous Exadata Infrastructure was created.
- zone
Id string - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- availability_
domain str - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment_
id str - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- create_
async bool - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain str
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname str
- The host name for the Autonomous Exadata Infrastructure node.
- last_
maintenance_ strrun_ id - The OCID of the last maintenance run.
- license_
model str - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle_
details str - Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
- maintenance_
window_ database.details Autonomous Exadata Infrastructure Maintenance Window Details Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance_
windows Sequence[database.Autonomous Exadata Infrastructure Maintenance Window Args] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next_
maintenance_ strrun_ id - The OCID of the next maintenance run.
- nsg_
ids Sequence[str] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- scan_
dns_ strname - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- shape str
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- state str
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- subnet_
id str The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- time_
created str - The date and time the Autonomous Exadata Infrastructure was created.
- zone_
id str - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
- availability
Domain String - The availability domain where the Autonomous Exadata Infrastructure is located.
- compartment
Id String - (Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
- create
Async Boolean - 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 - (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
- domain String
- A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname String
- The host name for the Autonomous Exadata Infrastructure node.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- license
Model String - The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
- maintenance
Window Property MapDetails - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance
Windows List<Property Map> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
- shape String
- The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
- state String
- The current lifecycle state of the Autonomous Exadata Infrastructure.
- subnet
Id String The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
Subnet Restrictions:
- For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.
** 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
- time
Created String - The date and time the Autonomous Exadata Infrastructure was created.
- zone
Id String - The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
Supporting Types
AutonomousExadataInfrastructureMaintenanceWindow, AutonomousExadataInfrastructureMaintenanceWindowArgs
- Custom
Action intTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of List<AutonomousWeeks Exadata Infrastructure Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- Hours
Of List<int>Days - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- Is
Custom boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<Autonomous
Exadata Infrastructure Maintenance Window Month> - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus List<bool> - Weeks
Of List<int>Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- Custom
Action intTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of []AutonomousWeeks Exadata Infrastructure Maintenance Window Days Of Week - Days during the week when maintenance should be performed.
- Hours
Of []intDays - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- Is
Custom boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
[]Autonomous
Exadata Infrastructure Maintenance Window Month - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus []bool - Weeks
Of []intMonths - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action IntegerTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<AutonomousWeeks Exadata Infrastructure Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- hours
Of List<Integer>Days - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time IntegerIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
List<Autonomous
Exadata Infrastructure Maintenance Window Month> - Months during the year when maintenance should be performed.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Integer>Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action numberTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of AutonomousWeeks Exadata Infrastructure Maintenance Window Days Of Week[] - Days during the week when maintenance should be performed.
- hours
Of number[]Days - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom booleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly booleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time numberIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Autonomous
Exadata Infrastructure Maintenance Window Month[] - Months during the year when maintenance should be performed.
- patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference string
- The maintenance window scheduling preference.
- skip
Rus boolean[] - weeks
Of number[]Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_
action_ inttimeout_ in_ mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ Sequence[database.weeks Autonomous Exadata Infrastructure Maintenance Window Days Of Week] - Days during the week when maintenance should be performed.
- hours_
of_ Sequence[int]days - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is_
custom_ boolaction_ timeout_ enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ boolpatching_ enabled - If true, enables the monthly patching option.
- lead_
time_ intin_ weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[database.
Autonomous Exadata Infrastructure Maintenance Window Month] - Months during the year when maintenance should be performed.
- patching_
mode str - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference str
- The maintenance window scheduling preference.
- skip_
rus Sequence[bool] - weeks_
of_ Sequence[int]months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action NumberTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<Property Map>Weeks - Days during the week when maintenance should be performed.
- hours
Of List<Number>Days - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time NumberIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- Months during the year when maintenance should be performed.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Number>Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek, AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
- 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.
AutonomousExadataInfrastructureMaintenanceWindowDetails, AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
- Custom
Action intTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of List<AutonomousWeeks Exadata Infrastructure Maintenance Window Details Days Of Week> - (Updatable) Days during the week when maintenance should be performed.
- Hours
Of List<int>Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- Is
Custom boolAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - (Updatable) If true, enables the monthly patching option.
- Lead
Time intIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<Autonomous
Exadata Infrastructure Maintenance Window Details Month> - (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Skip
Rus List<bool> - Weeks
Of List<int>Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- Custom
Action intTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of []AutonomousWeeks Exadata Infrastructure Maintenance Window Details Days Of Week - (Updatable) Days during the week when maintenance should be performed.
- Hours
Of []intDays - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- Is
Custom boolAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - (Updatable) If true, enables the monthly patching option.
- Lead
Time intIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
[]Autonomous
Exadata Infrastructure Maintenance Window Details Month - (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Skip
Rus []bool - Weeks
Of []intMonths - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action IntegerTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<AutonomousWeeks Exadata Infrastructure Maintenance Window Details Days Of Week> - (Updatable) Days during the week when maintenance should be performed.
- hours
Of List<Integer>Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom BooleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time IntegerIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
List<Autonomous
Exadata Infrastructure Maintenance Window Details Month> - (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Integer>Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action numberTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of AutonomousWeeks Exadata Infrastructure Maintenance Window Details Days Of Week[] - (Updatable) Days during the week when maintenance should be performed.
- hours
Of number[]Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom booleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly booleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time numberIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Autonomous
Exadata Infrastructure Maintenance Window Details Month[] - (Updatable) Months during the year when maintenance should be performed.
- patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference string
- (Updatable) The maintenance window scheduling preference.
- skip
Rus boolean[] - weeks
Of number[]Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_
action_ inttimeout_ in_ mins - (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ Sequence[database.weeks Autonomous Exadata Infrastructure Maintenance Window Details Days Of Week] - (Updatable) Days during the week when maintenance should be performed.
- hours_
of_ Sequence[int]days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is_
custom_ boolaction_ timeout_ enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ boolpatching_ enabled - (Updatable) If true, enables the monthly patching option.
- lead_
time_ intin_ weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[database.
Autonomous Exadata Infrastructure Maintenance Window Details Month] - (Updatable) Months during the year when maintenance should be performed.
- patching_
mode str (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference str
- (Updatable) The maintenance window scheduling preference.
- skip_
rus Sequence[bool] - weeks_
of_ Sequence[int]months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action NumberTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<Property Map>Weeks - (Updatable) Days during the week when maintenance should be performed.
- hours
Of List<Number>Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom BooleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time NumberIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Number>Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeek, AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs
- 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.
AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth, AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs
- 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.
AutonomousExadataInfrastructureMaintenanceWindowMonth, AutonomousExadataInfrastructureMaintenanceWindowMonthArgs
- 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
AutonomousExadataInfrastructures can be imported using the id
, e.g.
$ pulumi import oci:Database/autonomousExadataInfrastructure:AutonomousExadataInfrastructure test_autonomous_exadata_infrastructure "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.