1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. AutonomousExadataInfrastructure
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Database.AutonomousExadataInfrastructure

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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("testAutonomousExadataInfrastructure", {
        availabilityDomain: _var.autonomous_exadata_infrastructure_availability_domain,
        compartmentId: _var.compartment_id,
        shape: _var.autonomous_exadata_infrastructure_shape,
        subnetId: oci_core_subnet.test_subnet.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        displayName: _var.autonomous_exadata_infrastructure_display_name,
        domain: _var.autonomous_exadata_infrastructure_domain,
        freeformTags: {
            Department: "Finance",
        },
        licenseModel: _var.autonomous_exadata_infrastructure_license_model,
        maintenanceWindowDetails: {
            customActionTimeoutInMins: _var.autonomous_exadata_infrastructure_maintenance_window_details_custom_action_timeout_in_mins,
            daysOfWeeks: [{
                name: _var.autonomous_exadata_infrastructure_maintenance_window_details_days_of_week_name,
            }],
            hoursOfDays: _var.autonomous_exadata_infrastructure_maintenance_window_details_hours_of_day,
            isCustomActionTimeoutEnabled: _var.autonomous_exadata_infrastructure_maintenance_window_details_is_custom_action_timeout_enabled,
            isMonthlyPatchingEnabled: _var.autonomous_exadata_infrastructure_maintenance_window_details_is_monthly_patching_enabled,
            leadTimeInWeeks: _var.autonomous_exadata_infrastructure_maintenance_window_details_lead_time_in_weeks,
            months: [{
                name: _var.autonomous_exadata_infrastructure_maintenance_window_details_months_name,
            }],
            patchingMode: _var.autonomous_exadata_infrastructure_maintenance_window_details_patching_mode,
            preference: _var.autonomous_exadata_infrastructure_maintenance_window_details_preference,
            weeksOfMonths: _var.autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month,
        },
        nsgIds: _var.autonomous_exadata_infrastructure_nsg_ids,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_exadata_infrastructure = oci.database.AutonomousExadataInfrastructure("testAutonomousExadataInfrastructure",
        availability_domain=var["autonomous_exadata_infrastructure_availability_domain"],
        compartment_id=var["compartment_id"],
        shape=var["autonomous_exadata_infrastructure_shape"],
        subnet_id=oci_core_subnet["test_subnet"]["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        display_name=var["autonomous_exadata_infrastructure_display_name"],
        domain=var["autonomous_exadata_infrastructure_domain"],
        freeform_tags={
            "Department": "Finance",
        },
        license_model=var["autonomous_exadata_infrastructure_license_model"],
        maintenance_window_details=oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs(
            custom_action_timeout_in_mins=var["autonomous_exadata_infrastructure_maintenance_window_details_custom_action_timeout_in_mins"],
            days_of_weeks=[oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs(
                name=var["autonomous_exadata_infrastructure_maintenance_window_details_days_of_week_name"],
            )],
            hours_of_days=var["autonomous_exadata_infrastructure_maintenance_window_details_hours_of_day"],
            is_custom_action_timeout_enabled=var["autonomous_exadata_infrastructure_maintenance_window_details_is_custom_action_timeout_enabled"],
            is_monthly_patching_enabled=var["autonomous_exadata_infrastructure_maintenance_window_details_is_monthly_patching_enabled"],
            lead_time_in_weeks=var["autonomous_exadata_infrastructure_maintenance_window_details_lead_time_in_weeks"],
            months=[oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs(
                name=var["autonomous_exadata_infrastructure_maintenance_window_details_months_name"],
            )],
            patching_mode=var["autonomous_exadata_infrastructure_maintenance_window_details_patching_mode"],
            preference=var["autonomous_exadata_infrastructure_maintenance_window_details_preference"],
            weeks_of_months=var["autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month"],
        ),
        nsg_ids=var["autonomous_exadata_infrastructure_nsg_ids"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.NewAutonomousExadataInfrastructure(ctx, "testAutonomousExadataInfrastructure", &Database.AutonomousExadataInfrastructureArgs{
    			AvailabilityDomain: pulumi.Any(_var.Autonomous_exadata_infrastructure_availability_domain),
    			CompartmentId:      pulumi.Any(_var.Compartment_id),
    			Shape:              pulumi.Any(_var.Autonomous_exadata_infrastructure_shape),
    			SubnetId:           pulumi.Any(oci_core_subnet.Test_subnet.Id),
    			DefinedTags: pulumi.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			DisplayName: pulumi.Any(_var.Autonomous_exadata_infrastructure_display_name),
    			Domain:      pulumi.Any(_var.Autonomous_exadata_infrastructure_domain),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			LicenseModel: pulumi.Any(_var.Autonomous_exadata_infrastructure_license_model),
    			MaintenanceWindowDetails: &database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs{
    				CustomActionTimeoutInMins: pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_custom_action_timeout_in_mins),
    				DaysOfWeeks: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArray{
    					&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs{
    						Name: pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_days_of_week_name),
    					},
    				},
    				HoursOfDays:                  pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_hours_of_day),
    				IsCustomActionTimeoutEnabled: pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_is_custom_action_timeout_enabled),
    				IsMonthlyPatchingEnabled:     pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_is_monthly_patching_enabled),
    				LeadTimeInWeeks:              pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_lead_time_in_weeks),
    				Months: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArray{
    					&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs{
    						Name: pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_months_name),
    					},
    				},
    				PatchingMode:  pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_patching_mode),
    				Preference:    pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_preference),
    				WeeksOfMonths: pulumi.Any(_var.Autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month),
    			},
    			NsgIds: pulumi.Any(_var.Autonomous_exadata_infrastructure_nsg_ids),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAutonomousExadataInfrastructure = new Oci.Database.AutonomousExadataInfrastructure("testAutonomousExadataInfrastructure", new()
        {
            AvailabilityDomain = @var.Autonomous_exadata_infrastructure_availability_domain,
            CompartmentId = @var.Compartment_id,
            Shape = @var.Autonomous_exadata_infrastructure_shape,
            SubnetId = oci_core_subnet.Test_subnet.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            DisplayName = @var.Autonomous_exadata_infrastructure_display_name,
            Domain = @var.Autonomous_exadata_infrastructure_domain,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            LicenseModel = @var.Autonomous_exadata_infrastructure_license_model,
            MaintenanceWindowDetails = new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
            {
                CustomActionTimeoutInMins = @var.Autonomous_exadata_infrastructure_maintenance_window_details_custom_action_timeout_in_mins,
                DaysOfWeeks = new[]
                {
                    new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs
                    {
                        Name = @var.Autonomous_exadata_infrastructure_maintenance_window_details_days_of_week_name,
                    },
                },
                HoursOfDays = @var.Autonomous_exadata_infrastructure_maintenance_window_details_hours_of_day,
                IsCustomActionTimeoutEnabled = @var.Autonomous_exadata_infrastructure_maintenance_window_details_is_custom_action_timeout_enabled,
                IsMonthlyPatchingEnabled = @var.Autonomous_exadata_infrastructure_maintenance_window_details_is_monthly_patching_enabled,
                LeadTimeInWeeks = @var.Autonomous_exadata_infrastructure_maintenance_window_details_lead_time_in_weeks,
                Months = new[]
                {
                    new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs
                    {
                        Name = @var.Autonomous_exadata_infrastructure_maintenance_window_details_months_name,
                    },
                },
                PatchingMode = @var.Autonomous_exadata_infrastructure_maintenance_window_details_patching_mode,
                Preference = @var.Autonomous_exadata_infrastructure_maintenance_window_details_preference,
                WeeksOfMonths = @var.Autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month,
            },
            NsgIds = @var.Autonomous_exadata_infrastructure_nsg_ids,
        });
    
    });
    
    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(var_.autonomous_exadata_infrastructure_availability_domain())
                .compartmentId(var_.compartment_id())
                .shape(var_.autonomous_exadata_infrastructure_shape())
                .subnetId(oci_core_subnet.test_subnet().id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .displayName(var_.autonomous_exadata_infrastructure_display_name())
                .domain(var_.autonomous_exadata_infrastructure_domain())
                .freeformTags(Map.of("Department", "Finance"))
                .licenseModel(var_.autonomous_exadata_infrastructure_license_model())
                .maintenanceWindowDetails(AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs.builder()
                    .customActionTimeoutInMins(var_.autonomous_exadata_infrastructure_maintenance_window_details_custom_action_timeout_in_mins())
                    .daysOfWeeks(AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs.builder()
                        .name(var_.autonomous_exadata_infrastructure_maintenance_window_details_days_of_week_name())
                        .build())
                    .hoursOfDays(var_.autonomous_exadata_infrastructure_maintenance_window_details_hours_of_day())
                    .isCustomActionTimeoutEnabled(var_.autonomous_exadata_infrastructure_maintenance_window_details_is_custom_action_timeout_enabled())
                    .isMonthlyPatchingEnabled(var_.autonomous_exadata_infrastructure_maintenance_window_details_is_monthly_patching_enabled())
                    .leadTimeInWeeks(var_.autonomous_exadata_infrastructure_maintenance_window_details_lead_time_in_weeks())
                    .months(AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs.builder()
                        .name(var_.autonomous_exadata_infrastructure_maintenance_window_details_months_name())
                        .build())
                    .patchingMode(var_.autonomous_exadata_infrastructure_maintenance_window_details_patching_mode())
                    .preference(var_.autonomous_exadata_infrastructure_maintenance_window_details_preference())
                    .weeksOfMonths(var_.autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month())
                    .build())
                .nsgIds(var_.autonomous_exadata_infrastructure_nsg_ids())
                .build());
    
        }
    }
    
    resources:
      testAutonomousExadataInfrastructure:
        type: oci:Database:AutonomousExadataInfrastructure
        properties:
          #Required
          availabilityDomain: ${var.autonomous_exadata_infrastructure_availability_domain}
          compartmentId: ${var.compartment_id}
          shape: ${var.autonomous_exadata_infrastructure_shape}
          subnetId: ${oci_core_subnet.test_subnet.id}
          #Optional
          definedTags:
            Operations.CostCenter: '42'
          displayName: ${var.autonomous_exadata_infrastructure_display_name}
          domain: ${var.autonomous_exadata_infrastructure_domain}
          freeformTags:
            Department: Finance
          licenseModel: ${var.autonomous_exadata_infrastructure_license_model}
          maintenanceWindowDetails:
            customActionTimeoutInMins: ${var.autonomous_exadata_infrastructure_maintenance_window_details_custom_action_timeout_in_mins}
            daysOfWeeks:
              - name: ${var.autonomous_exadata_infrastructure_maintenance_window_details_days_of_week_name}
            hoursOfDays: ${var.autonomous_exadata_infrastructure_maintenance_window_details_hours_of_day}
            isCustomActionTimeoutEnabled: ${var.autonomous_exadata_infrastructure_maintenance_window_details_is_custom_action_timeout_enabled}
            isMonthlyPatchingEnabled: ${var.autonomous_exadata_infrastructure_maintenance_window_details_is_monthly_patching_enabled}
            leadTimeInWeeks: ${var.autonomous_exadata_infrastructure_maintenance_window_details_lead_time_in_weeks}
            months:
              - name: ${var.autonomous_exadata_infrastructure_maintenance_window_details_months_name}
            patchingMode: ${var.autonomous_exadata_infrastructure_maintenance_window_details_patching_mode}
            preference: ${var.autonomous_exadata_infrastructure_maintenance_window_details_preference}
            weeksOfMonths: ${var.autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month}
          nsgIds: ${var.autonomous_exadata_infrastructure_nsg_ids}
    

    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, Any]] = None,
                                        display_name: Optional[str] = None,
                                        domain: Optional[str] = None,
                                        freeform_tags: Optional[Mapping[str, Any]] = None,
                                        license_model: Optional[str] = None,
                                        maintenance_window_details: Optional[_database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs] = None,
                                        nsg_ids: Optional[Sequence[str]] = None)
    func NewAutonomousExadataInfrastructure(ctx *Context, name string, args AutonomousExadataInfrastructureArgs, opts ...ResourceOption) (*AutonomousExadataInfrastructure, error)
    public AutonomousExadataInfrastructure(string name, AutonomousExadataInfrastructureArgs args, CustomResourceOptions? opts = null)
    public AutonomousExadataInfrastructure(String name, AutonomousExadataInfrastructureArgs args)
    public AutonomousExadataInfrastructure(String name, AutonomousExadataInfrastructureArgs args, CustomResourceOptions options)
    
    type: oci:Database:AutonomousExadataInfrastructure
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AutonomousExadataInfrastructureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AutonomousExadataInfrastructureArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AutonomousExadataInfrastructureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutonomousExadataInfrastructureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutonomousExadataInfrastructureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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", "any" },
        },
        DisplayName = "string",
        Domain = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        LicenseModel = "string",
        MaintenanceWindowDetails = new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs
        {
            CustomActionTimeoutInMins = 0,
            DaysOfWeeks = new[]
            {
                new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs
                {
                    Name = "string",
                },
            },
            HoursOfDays = new[]
            {
                0,
            },
            IsCustomActionTimeoutEnabled = false,
            IsMonthlyPatchingEnabled = false,
            LeadTimeInWeeks = 0,
            Months = new[]
            {
                new Oci.Database.Inputs.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs
                {
                    Name = "string",
                },
            },
            PatchingMode = "string",
            Preference = "string",
            SkipRus = new[]
            {
                false,
            },
            WeeksOfMonths = new[]
            {
                0,
            },
        },
        NsgIds = new[]
        {
            "string",
        },
    });
    
    example, err := Database.NewAutonomousExadataInfrastructure(ctx, "autonomousExadataInfrastructureResource", &Database.AutonomousExadataInfrastructureArgs{
    	CompartmentId: pulumi.String("string"),
    	Shape:         pulumi.String("string"),
    	SubnetId:      pulumi.String("string"),
    	CreateAsync:   pulumi.Bool(false),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	DisplayName: pulumi.String("string"),
    	Domain:      pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	LicenseModel: pulumi.String("string"),
    	MaintenanceWindowDetails: &database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs{
    		CustomActionTimeoutInMins: pulumi.Int(0),
    		DaysOfWeeks: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArray{
    			&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		HoursOfDays: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		IsCustomActionTimeoutEnabled: pulumi.Bool(false),
    		IsMonthlyPatchingEnabled:     pulumi.Bool(false),
    		LeadTimeInWeeks:              pulumi.Int(0),
    		Months: database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArray{
    			&database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		PatchingMode: pulumi.String("string"),
    		Preference:   pulumi.String("string"),
    		SkipRus: pulumi.BoolArray{
    			pulumi.Bool(false),
    		},
    		WeeksOfMonths: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    	},
    	NsgIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var autonomousExadataInfrastructureResource = new AutonomousExadataInfrastructure("autonomousExadataInfrastructureResource", AutonomousExadataInfrastructureArgs.builder()        
        .compartmentId("string")
        .shape("string")
        .subnetId("string")
        .createAsync(false)
        .definedTags(Map.of("string", "any"))
        .displayName("string")
        .domain("string")
        .freeformTags(Map.of("string", "any"))
        .licenseModel("string")
        .maintenanceWindowDetails(AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs.builder()
            .customActionTimeoutInMins(0)
            .daysOfWeeks(AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs.builder()
                .name("string")
                .build())
            .hoursOfDays(0)
            .isCustomActionTimeoutEnabled(false)
            .isMonthlyPatchingEnabled(false)
            .leadTimeInWeeks(0)
            .months(AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs.builder()
                .name("string")
                .build())
            .patchingMode("string")
            .preference("string")
            .skipRus(false)
            .weeksOfMonths(0)
            .build())
        .nsgIds("string")
        .build());
    
    autonomous_exadata_infrastructure_resource = oci.database.AutonomousExadataInfrastructure("autonomousExadataInfrastructureResource",
        compartment_id="string",
        shape="string",
        subnet_id="string",
        create_async=False,
        defined_tags={
            "string": "any",
        },
        display_name="string",
        domain="string",
        freeform_tags={
            "string": "any",
        },
        license_model="string",
        maintenance_window_details=oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs(
            custom_action_timeout_in_mins=0,
            days_of_weeks=[oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsDaysOfWeekArgs(
                name="string",
            )],
            hours_of_days=[0],
            is_custom_action_timeout_enabled=False,
            is_monthly_patching_enabled=False,
            lead_time_in_weeks=0,
            months=[oci.database.AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs(
                name="string",
            )],
            patching_mode="string",
            preference="string",
            skip_rus=[False],
            weeks_of_months=[0],
        ),
        nsg_ids=["string"])
    
    const autonomousExadataInfrastructureResource = new oci.database.AutonomousExadataInfrastructure("autonomousExadataInfrastructureResource", {
        compartmentId: "string",
        shape: "string",
        subnetId: "string",
        createAsync: false,
        definedTags: {
            string: "any",
        },
        displayName: "string",
        domain: "string",
        freeformTags: {
            string: "any",
        },
        licenseModel: "string",
        maintenanceWindowDetails: {
            customActionTimeoutInMins: 0,
            daysOfWeeks: [{
                name: "string",
            }],
            hoursOfDays: [0],
            isCustomActionTimeoutEnabled: false,
            isMonthlyPatchingEnabled: false,
            leadTimeInWeeks: 0,
            months: [{
                name: "string",
            }],
            patchingMode: "string",
            preference: "string",
            skipRus: [false],
            weeksOfMonths: [0],
        },
        nsgIds: ["string"],
    });
    
    type: oci:Database:AutonomousExadataInfrastructure
    properties:
        compartmentId: string
        createAsync: false
        definedTags:
            string: any
        displayName: string
        domain: string
        freeformTags:
            string: any
        licenseModel: string
        maintenanceWindowDetails:
            customActionTimeoutInMins: 0
            daysOfWeeks:
                - name: string
            hoursOfDays:
                - 0
            isCustomActionTimeoutEnabled: false
            isMonthlyPatchingEnabled: false
            leadTimeInWeeks: 0
            months:
                - name: string
            patchingMode: string
            preference: string
            skipRus:
                - false
            weeksOfMonths:
                - 0
        nsgIds:
            - string
        shape: string
        subnetId: string
    

    AutonomousExadataInfrastructure Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AutonomousExadataInfrastructure resource accepts the following input properties:

    AvailabilityDomain 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.
    Shape string
    The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
    SubnetId 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, object>
    (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 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, object>
    (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 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 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.
    Shape string
    The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
    SubnetId 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]interface{}
    (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 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]interface{}
    (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 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 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.
    shape String
    The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
    subnetId 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,Object>
    (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 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,Object>
    (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 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 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.
    shape string
    The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
    subnetId 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]: any}
    (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 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]: any}
    (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 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 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.
    shape str
    The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
    subnet_id str

    The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.

    Subnet Restrictions:

    • For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20

    These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    create_async bool
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
    domain str
    A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    license_model str
    The Oracle license model that applies to all the databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
    maintenance_window_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 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.
    shape String
    The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
    subnetId 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<Any>
    (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 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<Any>
    (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 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, Any]] = None,
            display_name: Optional[str] = None,
            domain: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            hostname: Optional[str] = None,
            last_maintenance_run_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            maintenance_window_details: Optional[_database.AutonomousExadataInfrastructureMaintenanceWindowDetailsArgs] = None,
            maintenance_windows: Optional[Sequence[_database.AutonomousExadataInfrastructureMaintenanceWindowArgs]] = None,
            next_maintenance_run_id: Optional[str] = None,
            nsg_ids: Optional[Sequence[str]] = None,
            scan_dns_name: Optional[str] = None,
            shape: Optional[str] = None,
            state: Optional[str] = None,
            subnet_id: Optional[str] = None,
            time_created: Optional[str] = None,
            zone_id: Optional[str] = None) -> AutonomousExadataInfrastructure
    func GetAutonomousExadataInfrastructure(ctx *Context, name string, id IDInput, state *AutonomousExadataInfrastructureState, opts ...ResourceOption) (*AutonomousExadataInfrastructure, error)
    public static AutonomousExadataInfrastructure Get(string name, Input<string> id, AutonomousExadataInfrastructureState? state, CustomResourceOptions? opts = null)
    public static AutonomousExadataInfrastructure get(String name, Output<String> id, AutonomousExadataInfrastructureState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AvailabilityDomain 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, object>
    (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 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, object>
    (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 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 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 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 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]interface{}
    (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 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]interface{}
    (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 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 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 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 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,Object>
    (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 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,Object>
    (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 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 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 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 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]: any}
    (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 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]: any}
    (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 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 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 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 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, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    (Updatable) The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be unique.
    domain str
    A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
    freeform_tags Mapping[str, Any]
    (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 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 str
    The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of shapes, use the ListDbSystemShapes operation.
    state str
    The current lifecycle state of the Autonomous Exadata Infrastructure.
    subnet_id str

    The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.

    Subnet Restrictions:

    • For Autonomous Exadata Infrastructures, do not use a subnet that overlaps with 192.168.128.0/20

    These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and backup subnet.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    time_created str
    The date and time the Autonomous Exadata Infrastructure was created.
    zone_id str
    The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
    availabilityDomain 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<Any>
    (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 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<Any>
    (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 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 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 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
    (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<AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek>
    (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<AutonomousExadataInfrastructureMaintenanceWindowMonth>
    (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 []AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek
    (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 []AutonomousExadataInfrastructureMaintenanceWindowMonth
    (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<AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek>
    (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<AutonomousExadataInfrastructureMaintenanceWindowMonth>
    (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 AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek[]
    (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 AutonomousExadataInfrastructureMaintenanceWindowMonth[]
    (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.AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek]
    (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.AutonomousExadataInfrastructureMaintenanceWindowMonth]
    (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.

    AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek, AutonomousExadataInfrastructureMaintenanceWindowDaysOfWeekArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    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 string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    AutonomousExadataInfrastructureMaintenanceWindowDetailsMonth, AutonomousExadataInfrastructureMaintenanceWindowDetailsMonthArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    AutonomousExadataInfrastructureMaintenanceWindowMonth, AutonomousExadataInfrastructureMaintenanceWindowMonthArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    Import

    AutonomousExadataInfrastructures can be imported using the id, e.g.

    $ pulumi import oci:Database/autonomousExadataInfrastructure:AutonomousExadataInfrastructure test_autonomous_exadata_infrastructure "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi