1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. AutonomousExadataInfrastructure
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

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

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 This property is required. string
The unique name of the resource.
args This property is required. AutonomousExadataInfrastructureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. AutonomousExadataInfrastructureArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AutonomousExadataInfrastructureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
    },
});
Copy
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"),
	},
})
Copy
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());
Copy
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={
        "custom_action_timeout_in_mins": 0,
        "days_of_weeks": [{
            "name": "string",
        }],
        "hours_of_days": [0],
        "is_custom_action_timeout_enabled": False,
        "is_monthly_patching_enabled": False,
        "lead_time_in_weeks": 0,
        "months": [{
            "name": "string",
        }],
        "patching_mode": "string",
        "preference": "string",
        "skip_rus": [False],
        "weeks_of_months": [0],
    },
    nsg_ids=["string"])
Copy
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"],
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AutonomousExadataInfrastructure resource accepts the following input properties:

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

CompartmentId This property is required. string
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
Shape
This property is required.
Changes to this property will trigger replacement.
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.
SubnetId
This property is required.
Changes to this property will trigger replacement.
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

CreateAsync bool
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
Domain Changes to this property will trigger replacement. 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.
FreeformTags 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"}
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
MaintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetails
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NsgIds 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.
AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

CompartmentId This property is required. string
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
Shape
This property is required.
Changes to this property will trigger replacement.
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.
SubnetId
This property is required.
Changes to this property will trigger replacement.
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

CreateAsync bool
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
Domain Changes to this property will trigger replacement. 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.
FreeformTags 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"}
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
MaintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NsgIds []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.
availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartmentId This property is required. String
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
shape
This property is required.
Changes to this property will trigger replacement.
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.
subnetId
This property is required.
Changes to this property will trigger replacement.
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

createAsync Boolean
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
domain Changes to this property will trigger replacement. 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.
freeformTags 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"}
licenseModel Changes to this property will trigger replacement. String
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
maintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetails
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nsgIds 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.
availabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartmentId This property is required. string
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
shape
This property is required.
Changes to this property will trigger replacement.
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.
subnetId
This property is required.
Changes to this property will trigger replacement.
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

createAsync boolean
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
domain Changes to this property will trigger replacement. 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.
freeformTags {[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"}
licenseModel Changes to this property will trigger replacement. string
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
maintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetails
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nsgIds 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
This property is required.
Changes to this property will trigger replacement.
str
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartment_id This property is required. str
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
shape
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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
defined_tags 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 Changes to this property will trigger replacement. 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.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
license_model Changes to this property will trigger replacement. 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_details database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
(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.
availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartmentId This property is required. String
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
shape
This property is required.
Changes to this property will trigger replacement.
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.
subnetId
This property is required.
Changes to this property will trigger replacement.
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

createAsync Boolean
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
domain Changes to this property will trigger replacement. 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.
freeformTags 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"}
licenseModel Changes to this property will trigger replacement. String
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
maintenanceWindowDetails Property Map
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nsgIds 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.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LifecycleDetails string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
MaintenanceWindows List<AutonomousExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NextMaintenanceRunId string
The OCID of the next maintenance run.
ScanDnsName string
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.
TimeCreated string
The date and time the Autonomous Exadata Infrastructure was created.
ZoneId 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.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LifecycleDetails string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
MaintenanceWindows []AutonomousExadataInfrastructureMaintenanceWindow
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NextMaintenanceRunId string
The OCID of the next maintenance run.
ScanDnsName string
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.
TimeCreated string
The date and time the Autonomous Exadata Infrastructure was created.
ZoneId 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.
lastMaintenanceRunId String
The OCID of the last maintenance run.
lifecycleDetails String
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindows List<AutonomousExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId String
The OCID of the next maintenance run.
scanDnsName String
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.
timeCreated String
The date and time the Autonomous Exadata Infrastructure was created.
zoneId 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.
lastMaintenanceRunId string
The OCID of the last maintenance run.
lifecycleDetails string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindows AutonomousExadataInfrastructureMaintenanceWindow[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId string
The OCID of the next maintenance run.
scanDnsName string
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.
timeCreated string
The date and time the Autonomous Exadata Infrastructure was created.
zoneId 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_run_id str
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.AutonomousExadataInfrastructureMaintenanceWindow]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
next_maintenance_run_id str
The OCID of the next maintenance run.
scan_dns_name str
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.
lastMaintenanceRunId String
The OCID of the last maintenance run.
lifecycleDetails String
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindows List<Property Map>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId String
The OCID of the next maintenance run.
scanDnsName String
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.
timeCreated String
The date and time the Autonomous Exadata Infrastructure was created.
zoneId 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)
resources:  _:    type: oci:Database:AutonomousExadataInfrastructure    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AvailabilityDomain Changes to this property will trigger replacement. string
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

CompartmentId string
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
CreateAsync bool
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
Domain Changes to this property will trigger replacement. 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.
FreeformTags 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.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
LifecycleDetails string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
MaintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetails
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaintenanceWindows List<AutonomousExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NextMaintenanceRunId string
The OCID of the next maintenance run.
NsgIds 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.
ScanDnsName string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
Shape Changes to this property will trigger replacement. 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.
SubnetId Changes to this property will trigger replacement. 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

TimeCreated string
The date and time the Autonomous Exadata Infrastructure was created.
ZoneId string
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
AvailabilityDomain Changes to this property will trigger replacement. string
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

CompartmentId string
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
CreateAsync bool
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
Domain Changes to this property will trigger replacement. 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.
FreeformTags 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.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
LifecycleDetails string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
MaintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaintenanceWindows []AutonomousExadataInfrastructureMaintenanceWindowArgs
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NextMaintenanceRunId string
The OCID of the next maintenance run.
NsgIds []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.
ScanDnsName string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
Shape Changes to this property will trigger replacement. 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.
SubnetId Changes to this property will trigger replacement. 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

TimeCreated string
The date and time the Autonomous Exadata Infrastructure was created.
ZoneId string
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
availabilityDomain Changes to this property will trigger replacement. String
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartmentId String
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
createAsync Boolean
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
domain Changes to this property will trigger replacement. 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.
freeformTags 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.
lastMaintenanceRunId String
The OCID of the last maintenance run.
licenseModel Changes to this property will trigger replacement. String
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails String
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetails
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maintenanceWindows List<AutonomousExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId String
The OCID of the next maintenance run.
nsgIds 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.
scanDnsName String
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape Changes to this property will trigger replacement. 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.
subnetId Changes to this property will trigger replacement. 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

timeCreated String
The date and time the Autonomous Exadata Infrastructure was created.
zoneId String
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
availabilityDomain Changes to this property will trigger replacement. string
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartmentId string
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
createAsync boolean
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
domain Changes to this property will trigger replacement. 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.
freeformTags {[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.
lastMaintenanceRunId string
The OCID of the last maintenance run.
licenseModel Changes to this property will trigger replacement. string
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindowDetails AutonomousExadataInfrastructureMaintenanceWindowDetails
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maintenanceWindows AutonomousExadataInfrastructureMaintenanceWindow[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId string
The OCID of the next maintenance run.
nsgIds 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.
scanDnsName string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape Changes to this property will trigger replacement. 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.
subnetId Changes to this property will trigger replacement. 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

timeCreated string
The date and time the Autonomous Exadata Infrastructure was created.
zoneId string
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
availability_domain Changes to this property will trigger replacement. str
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartment_id str
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
create_async bool
defined_tags 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 Changes to this property will trigger replacement. 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.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
hostname str
The host name for the Autonomous Exadata Infrastructure node.
last_maintenance_run_id str
The OCID of the last maintenance run.
license_model Changes to this property will trigger replacement. 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_details database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maintenance_windows Sequence[database.AutonomousExadataInfrastructureMaintenanceWindowArgs]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
next_maintenance_run_id str
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_name str
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
availabilityDomain Changes to this property will trigger replacement. String
The availability domain where the Autonomous Exadata Infrastructure is located.

Deprecated: Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead.

compartmentId String
(Updatable) The OCID of the compartment the Autonomous Exadata Infrastructure belongs in.
createAsync Boolean
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
domain Changes to this property will trigger replacement. 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.
freeformTags 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.
lastMaintenanceRunId String
The OCID of the last maintenance run.
licenseModel Changes to this property will trigger replacement. String
The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails String
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindowDetails Property Map
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maintenanceWindows List<Property Map>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId String
The OCID of the next maintenance run.
nsgIds 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.
scanDnsName String
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape Changes to this property will trigger replacement. 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.
subnetId Changes to this property will trigger replacement. 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

timeCreated String
The date and time the Autonomous Exadata Infrastructure was created.
zoneId String
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.

Supporting Types

AutonomousExadataInfrastructureMaintenanceWindow
, AutonomousExadataInfrastructureMaintenanceWindowArgs

CustomActionTimeoutInMins int
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
DaysOfWeeks List<AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek>
Days during the week when maintenance should be performed.
HoursOfDays List<int>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
If true, enables the monthly patching option.
LeadTimeInWeeks int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months List<AutonomousExadataInfrastructureMaintenanceWindowMonth>
Months during the year when maintenance should be performed.
PatchingMode string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
Preference string
The maintenance window scheduling preference.
SkipRus List<bool>
WeeksOfMonths List<int>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
CustomActionTimeoutInMins int
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).
DaysOfWeeks []AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek
Days during the week when maintenance should be performed.
HoursOfDays []int
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
If true, enables the monthly patching option.
LeadTimeInWeeks int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months []AutonomousExadataInfrastructureMaintenanceWindowMonth
Months during the year when maintenance should be performed.
PatchingMode string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
Preference string
The maintenance window scheduling preference.
SkipRus []bool
WeeksOfMonths []int
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins Integer
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).
daysOfWeeks List<AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek>
Days during the week when maintenance should be performed.
hoursOfDays List<Integer>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
If true, enables the monthly patching option.
leadTimeInWeeks Integer
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months List<AutonomousExadataInfrastructureMaintenanceWindowMonth>
Months during the year when maintenance should be performed.
patchingMode String
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
preference String
The maintenance window scheduling preference.
skipRus List<Boolean>
weeksOfMonths List<Integer>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins number
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).
daysOfWeeks AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek[]
Days during the week when maintenance should be performed.
hoursOfDays number[]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled boolean
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled boolean
If true, enables the monthly patching option.
leadTimeInWeeks number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months AutonomousExadataInfrastructureMaintenanceWindowMonth[]
Months during the year when maintenance should be performed.
patchingMode string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
preference string
The maintenance window scheduling preference.
skipRus boolean[]
weeksOfMonths number[]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
custom_action_timeout_in_mins int
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
days_of_weeks Sequence[database.AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek]
Days during the week when maintenance should be performed.
hours_of_days Sequence[int]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
is_custom_action_timeout_enabled bool
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
is_monthly_patching_enabled bool
If true, enables the monthly patching option.
lead_time_in_weeks int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months Sequence[database.AutonomousExadataInfrastructureMaintenanceWindowMonth]
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_months Sequence[int]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins Number
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).
daysOfWeeks List<Property Map>
Days during the week when maintenance should be performed.
hoursOfDays List<Number>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
If true, enables the monthly patching option.
leadTimeInWeeks Number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months List<Property Map>
Months during the year when maintenance should be performed.
patchingMode String
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
preference String
The maintenance window scheduling preference.
skipRus List<Boolean>
weeksOfMonths List<Number>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

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

CustomActionTimeoutInMins int
(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).
DaysOfWeeks List<AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeek>
(Updatable) Days during the week when maintenance should be performed.
HoursOfDays List<int>
(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
IsCustomActionTimeoutEnabled bool
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
(Updatable) If true, enables the monthly patching option.
LeadTimeInWeeks int
(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<AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth>
(Updatable) Months during the year when maintenance should be performed.
PatchingMode 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.
SkipRus List<bool>
WeeksOfMonths List<int>
(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.
CustomActionTimeoutInMins int
(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).
DaysOfWeeks []AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeek
(Updatable) Days during the week when maintenance should be performed.
HoursOfDays []int
(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
IsCustomActionTimeoutEnabled bool
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
(Updatable) If true, enables the monthly patching option.
LeadTimeInWeeks int
(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 []AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth
(Updatable) Months during the year when maintenance should be performed.
PatchingMode 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.
SkipRus []bool
WeeksOfMonths []int
(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.
customActionTimeoutInMins Integer
(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).
daysOfWeeks List<AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeek>
(Updatable) Days during the week when maintenance should be performed.
hoursOfDays List<Integer>
(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
isCustomActionTimeoutEnabled Boolean
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
(Updatable) If true, enables the monthly patching option.
leadTimeInWeeks Integer
(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<AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth>
(Updatable) Months during the year when maintenance should be performed.
patchingMode 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.
skipRus List<Boolean>
weeksOfMonths List<Integer>
(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.
customActionTimeoutInMins number
(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).
daysOfWeeks AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeek[]
(Updatable) Days during the week when maintenance should be performed.
hoursOfDays number[]
(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
isCustomActionTimeoutEnabled boolean
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled boolean
(Updatable) If true, enables the monthly patching option.
leadTimeInWeeks number
(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 AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth[]
(Updatable) Months during the year when maintenance should be performed.
patchingMode 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.
skipRus boolean[]
weeksOfMonths number[]
(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_timeout_in_mins int
(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_weeks Sequence[database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeek]
(Updatable) Days during the week when maintenance should be performed.
hours_of_days Sequence[int]
(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_action_timeout_enabled bool
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
is_monthly_patching_enabled bool
(Updatable) If true, enables the monthly patching option.
lead_time_in_weeks int
(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.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth]
(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_months Sequence[int]
(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.
customActionTimeoutInMins Number
(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).
daysOfWeeks List<Property Map>
(Updatable) Days during the week when maintenance should be performed.
hoursOfDays List<Number>
(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
isCustomActionTimeoutEnabled Boolean
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
(Updatable) If true, enables the monthly patching option.
leadTimeInWeeks Number
(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.
patchingMode 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.
skipRus List<Boolean>
weeksOfMonths List<Number>
(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 This property is required. string
(Updatable) Name of the day of the week.
Name This property is required. string
(Updatable) Name of the day of the week.
name This property is required. String
(Updatable) Name of the day of the week.
name This property is required. string
(Updatable) Name of the day of the week.
name This property is required. str
(Updatable) Name of the day of the week.
name This property is required. String
(Updatable) Name of the day of the week.

AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth
, AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs

Name This property is required. string
(Updatable) Name of the month of the year.
Name This property is required. string
(Updatable) Name of the month of the year.
name This property is required. String
(Updatable) Name of the month of the year.
name This property is required. string
(Updatable) Name of the month of the year.
name This property is required. str
(Updatable) Name of the month of the year.
name This property is required. 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"
Copy

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.