1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousExadataInfrastructures
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Database.getAutonomousExadataInfrastructures

Explore with Pulumi AI

This data source provides the list of Autonomous Exadata Infrastructures in Oracle Cloud Infrastructure Database service.

Deprecated. Use the ListCloudExadataInfrastructures operation to list Exadata Infrastructures in the Oracle cloud and the ListCloudAutonomousVmClusters operation to list Autonomous Exadata VM clusters.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAutonomousExadataInfrastructures = oci.Database.getAutonomousExadataInfrastructures({
    compartmentId: compartmentId,
    availabilityDomain: autonomousExadataInfrastructureAvailabilityDomain,
    displayName: autonomousExadataInfrastructureDisplayName,
    state: autonomousExadataInfrastructureState,
});
Copy
import pulumi
import pulumi_oci as oci

test_autonomous_exadata_infrastructures = oci.Database.get_autonomous_exadata_infrastructures(compartment_id=compartment_id,
    availability_domain=autonomous_exadata_infrastructure_availability_domain,
    display_name=autonomous_exadata_infrastructure_display_name,
    state=autonomous_exadata_infrastructure_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetAutonomousExadataInfrastructures(ctx, &database.GetAutonomousExadataInfrastructuresArgs{
			CompartmentId:      compartmentId,
			AvailabilityDomain: pulumi.StringRef(autonomousExadataInfrastructureAvailabilityDomain),
			DisplayName:        pulumi.StringRef(autonomousExadataInfrastructureDisplayName),
			State:              pulumi.StringRef(autonomousExadataInfrastructureState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAutonomousExadataInfrastructures = Oci.Database.GetAutonomousExadataInfrastructures.Invoke(new()
    {
        CompartmentId = compartmentId,
        AvailabilityDomain = autonomousExadataInfrastructureAvailabilityDomain,
        DisplayName = autonomousExadataInfrastructureDisplayName,
        State = autonomousExadataInfrastructureState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetAutonomousExadataInfrastructuresArgs;
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) {
        final var testAutonomousExadataInfrastructures = DatabaseFunctions.getAutonomousExadataInfrastructures(GetAutonomousExadataInfrastructuresArgs.builder()
            .compartmentId(compartmentId)
            .availabilityDomain(autonomousExadataInfrastructureAvailabilityDomain)
            .displayName(autonomousExadataInfrastructureDisplayName)
            .state(autonomousExadataInfrastructureState)
            .build());

    }
}
Copy
variables:
  testAutonomousExadataInfrastructures:
    fn::invoke:
      function: oci:Database:getAutonomousExadataInfrastructures
      arguments:
        compartmentId: ${compartmentId}
        availabilityDomain: ${autonomousExadataInfrastructureAvailabilityDomain}
        displayName: ${autonomousExadataInfrastructureDisplayName}
        state: ${autonomousExadataInfrastructureState}
Copy

Using getAutonomousExadataInfrastructures

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getAutonomousExadataInfrastructures(args: GetAutonomousExadataInfrastructuresArgs, opts?: InvokeOptions): Promise<GetAutonomousExadataInfrastructuresResult>
function getAutonomousExadataInfrastructuresOutput(args: GetAutonomousExadataInfrastructuresOutputArgs, opts?: InvokeOptions): Output<GetAutonomousExadataInfrastructuresResult>
Copy
def get_autonomous_exadata_infrastructures(availability_domain: Optional[str] = None,
                                           compartment_id: Optional[str] = None,
                                           display_name: Optional[str] = None,
                                           filters: Optional[Sequence[_database.GetAutonomousExadataInfrastructuresFilter]] = None,
                                           state: Optional[str] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetAutonomousExadataInfrastructuresResult
def get_autonomous_exadata_infrastructures_output(availability_domain: Optional[pulumi.Input[str]] = None,
                                           compartment_id: Optional[pulumi.Input[str]] = None,
                                           display_name: Optional[pulumi.Input[str]] = None,
                                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetAutonomousExadataInfrastructuresFilterArgs]]]] = None,
                                           state: Optional[pulumi.Input[str]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousExadataInfrastructuresResult]
Copy
func GetAutonomousExadataInfrastructures(ctx *Context, args *GetAutonomousExadataInfrastructuresArgs, opts ...InvokeOption) (*GetAutonomousExadataInfrastructuresResult, error)
func GetAutonomousExadataInfrastructuresOutput(ctx *Context, args *GetAutonomousExadataInfrastructuresOutputArgs, opts ...InvokeOption) GetAutonomousExadataInfrastructuresResultOutput
Copy

> Note: This function is named GetAutonomousExadataInfrastructures in the Go SDK.

public static class GetAutonomousExadataInfrastructures 
{
    public static Task<GetAutonomousExadataInfrastructuresResult> InvokeAsync(GetAutonomousExadataInfrastructuresArgs args, InvokeOptions? opts = null)
    public static Output<GetAutonomousExadataInfrastructuresResult> Invoke(GetAutonomousExadataInfrastructuresInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAutonomousExadataInfrastructuresResult> getAutonomousExadataInfrastructures(GetAutonomousExadataInfrastructuresArgs args, InvokeOptions options)
public static Output<GetAutonomousExadataInfrastructuresResult> getAutonomousExadataInfrastructures(GetAutonomousExadataInfrastructuresArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getAutonomousExadataInfrastructures:getAutonomousExadataInfrastructures
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The compartment OCID.
AvailabilityDomain string
A filter to return only resources that match the given availability domain exactly.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Filters Changes to this property will trigger replacement. List<GetAutonomousExadataInfrastructuresFilter>
State string
A filter to return only resources that match the given lifecycle state exactly.
CompartmentId This property is required. string
The compartment OCID.
AvailabilityDomain string
A filter to return only resources that match the given availability domain exactly.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Filters Changes to this property will trigger replacement. []GetAutonomousExadataInfrastructuresFilter
State string
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
availabilityDomain String
A filter to return only resources that match the given availability domain exactly.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. List<GetAutonomousExadataInfrastructuresFilter>
state String
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. string
The compartment OCID.
availabilityDomain string
A filter to return only resources that match the given availability domain exactly.
displayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. GetAutonomousExadataInfrastructuresFilter[]
state string
A filter to return only resources that match the given lifecycle state exactly.
compartment_id This property is required. str
The compartment OCID.
availability_domain str
A filter to return only resources that match the given availability domain exactly.
display_name str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. Sequence[database.GetAutonomousExadataInfrastructuresFilter]
state str
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
availabilityDomain String
A filter to return only resources that match the given availability domain exactly.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources that match the given lifecycle state exactly.

getAutonomousExadataInfrastructures Result

The following output properties are available:

AutonomousExadataInfrastructures List<GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructure>
The list of autonomous_exadata_infrastructures.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
AvailabilityDomain string
The name of the availability domain that the Autonomous Exadata Infrastructure is located in.
DisplayName string
The user-friendly name for the Autonomous Exadata Infrastructure.
Filters List<GetAutonomousExadataInfrastructuresFilter>
State string
The current lifecycle state of the Autonomous Exadata Infrastructure.
AutonomousExadataInfrastructures []GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructure
The list of autonomous_exadata_infrastructures.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
AvailabilityDomain string
The name of the availability domain that the Autonomous Exadata Infrastructure is located in.
DisplayName string
The user-friendly name for the Autonomous Exadata Infrastructure.
Filters []GetAutonomousExadataInfrastructuresFilter
State string
The current lifecycle state of the Autonomous Exadata Infrastructure.
autonomousExadataInfrastructures List<GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructure>
The list of autonomous_exadata_infrastructures.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
availabilityDomain String
The name of the availability domain that the Autonomous Exadata Infrastructure is located in.
displayName String
The user-friendly name for the Autonomous Exadata Infrastructure.
filters List<GetAutonomousExadataInfrastructuresFilter>
state String
The current lifecycle state of the Autonomous Exadata Infrastructure.
autonomousExadataInfrastructures GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructure[]
The list of autonomous_exadata_infrastructures.
compartmentId string
The OCID of the compartment.
id string
The provider-assigned unique ID for this managed resource.
availabilityDomain string
The name of the availability domain that the Autonomous Exadata Infrastructure is located in.
displayName string
The user-friendly name for the Autonomous Exadata Infrastructure.
filters GetAutonomousExadataInfrastructuresFilter[]
state string
The current lifecycle state of the Autonomous Exadata Infrastructure.
autonomous_exadata_infrastructures Sequence[database.GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructure]
The list of autonomous_exadata_infrastructures.
compartment_id str
The OCID of the compartment.
id str
The provider-assigned unique ID for this managed resource.
availability_domain str
The name of the availability domain that the Autonomous Exadata Infrastructure is located in.
display_name str
The user-friendly name for the Autonomous Exadata Infrastructure.
filters Sequence[database.GetAutonomousExadataInfrastructuresFilter]
state str
The current lifecycle state of the Autonomous Exadata Infrastructure.
autonomousExadataInfrastructures List<Property Map>
The list of autonomous_exadata_infrastructures.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
availabilityDomain String
The name of the availability domain that the Autonomous Exadata Infrastructure is located in.
displayName String
The user-friendly name for the Autonomous Exadata Infrastructure.
filters List<Property Map>
state String
The current lifecycle state of the Autonomous Exadata Infrastructure.

Supporting Types

GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructure

AvailabilityDomain This property is required. string
A filter to return only resources that match the given availability domain exactly.

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

CompartmentId This property is required. string
The compartment OCID.
CreateAsync This property is required. bool
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Domain This property is required. string
The domain name for the Autonomous Exadata Infrastructure.
FreeformTags This property is required. Dictionary<string, string>
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 This property is required. string
The host name for the Autonomous Exadata Infrastructure node.
Id This property is required. string
The OCID of the Autonomous Exadata Infrastructure.
LastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
LicenseModel This property is required. string
The Oracle license model that applies to all databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
MaintenanceWindowDetails This property is required. List<GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetail>
MaintenanceWindows This property is required. List<GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
NsgIds This property is required. List<string>
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 This property is required. string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
Shape This property is required. string
The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage).
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
SubnetId This property is required. string
The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
TimeCreated This property is required. string
The date and time the Autonomous Exadata Infrastructure was created.
ZoneId This property is required. string
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
AvailabilityDomain This property is required. string
A filter to return only resources that match the given availability domain exactly.

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

CompartmentId This property is required. string
The compartment OCID.
CreateAsync This property is required. bool
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Domain This property is required. string
The domain name for the Autonomous Exadata Infrastructure.
FreeformTags This property is required. map[string]string
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 This property is required. string
The host name for the Autonomous Exadata Infrastructure node.
Id This property is required. string
The OCID of the Autonomous Exadata Infrastructure.
LastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
LicenseModel This property is required. string
The Oracle license model that applies to all databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
MaintenanceWindowDetails This property is required. []GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetail
MaintenanceWindows This property is required. []GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindow
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
NextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
NsgIds This property is required. []string
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 This property is required. string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
Shape This property is required. string
The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage).
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
SubnetId This property is required. string
The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
TimeCreated This property is required. string
The date and time the Autonomous Exadata Infrastructure was created.
ZoneId This property is required. string
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
availabilityDomain This property is required. String
A filter to return only resources that match the given availability domain exactly.

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

compartmentId This property is required. String
The compartment OCID.
createAsync This property is required. Boolean
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. String
The domain name for the Autonomous Exadata Infrastructure.
freeformTags This property is required. Map<String,String>
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 This property is required. String
The host name for the Autonomous Exadata Infrastructure node.
id This property is required. String
The OCID of the Autonomous Exadata Infrastructure.
lastMaintenanceRunId This property is required. String
The OCID of the last maintenance run.
licenseModel This property is required. String
The Oracle license model that applies to all databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindowDetails This property is required. List<GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetail>
maintenanceWindows This property is required. List<GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId This property is required. String
The OCID of the next maintenance run.
nsgIds This property is required. List<String>
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 This property is required. String
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape This property is required. String
The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage).
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
subnetId This property is required. String
The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
timeCreated This property is required. String
The date and time the Autonomous Exadata Infrastructure was created.
zoneId This property is required. String
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
availabilityDomain This property is required. string
A filter to return only resources that match the given availability domain exactly.

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

compartmentId This property is required. string
The compartment OCID.
createAsync This property is required. boolean
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. string
The domain name for the Autonomous Exadata Infrastructure.
freeformTags This property is required. {[key: string]: string}
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 This property is required. string
The host name for the Autonomous Exadata Infrastructure node.
id This property is required. string
The OCID of the Autonomous Exadata Infrastructure.
lastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
licenseModel This property is required. string
The Oracle license model that applies to all databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindowDetails This property is required. GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetail[]
maintenanceWindows This property is required. GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindow[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
nsgIds This property is required. string[]
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 This property is required. string
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape This property is required. string
The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage).
state This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
subnetId This property is required. string
The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
timeCreated This property is required. string
The date and time the Autonomous Exadata Infrastructure was created.
zoneId This property is required. string
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
availability_domain This property is required. str
A filter to return only resources that match the given availability domain exactly.

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

compartment_id This property is required. str
The compartment OCID.
create_async This property is required. bool
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name This property is required. str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. str
The domain name for the Autonomous Exadata Infrastructure.
freeform_tags This property is required. Mapping[str, str]
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 This property is required. str
The host name for the Autonomous Exadata Infrastructure node.
id This property is required. str
The OCID of the Autonomous Exadata Infrastructure.
last_maintenance_run_id This property is required. str
The OCID of the last maintenance run.
license_model This property is required. str
The Oracle license model that applies to all databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycle_details This property is required. str
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenance_window_details This property is required. Sequence[database.GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetail]
maintenance_windows This property is required. Sequence[database.GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindow]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
next_maintenance_run_id This property is required. str
The OCID of the next maintenance run.
nsg_ids This property is required. Sequence[str]
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 This property is required. str
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape This property is required. str
The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage).
state This property is required. str
A filter to return only resources that match the given lifecycle state exactly.
subnet_id This property is required. str
The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
time_created This property is required. str
The date and time the Autonomous Exadata Infrastructure was created.
zone_id This property is required. str
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.
availabilityDomain This property is required. String
A filter to return only resources that match the given availability domain exactly.

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

compartmentId This property is required. String
The compartment OCID.
createAsync This property is required. Boolean
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
domain This property is required. String
The domain name for the Autonomous Exadata Infrastructure.
freeformTags This property is required. Map<String>
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 This property is required. String
The host name for the Autonomous Exadata Infrastructure node.
id This property is required. String
The OCID of the Autonomous Exadata Infrastructure.
lastMaintenanceRunId This property is required. String
The OCID of the last maintenance run.
licenseModel This property is required. String
The Oracle license model that applies to all databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure.
maintenanceWindowDetails This property is required. List<Property Map>
maintenanceWindows This property is required. List<Property Map>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
nextMaintenanceRunId This property is required. String
The OCID of the next maintenance run.
nsgIds This property is required. List<String>
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 This property is required. String
The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure.
shape This property is required. String
The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage).
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
subnetId This property is required. String
The OCID of the subnet the Autonomous Exadata Infrastructure is associated with.
timeCreated This property is required. String
The date and time the Autonomous Exadata Infrastructure was created.
zoneId This property is required. String
The OCID of the zone the Autonomous Exadata Infrastructure is associated with.

GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindow

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

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

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

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

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

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

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

GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDaysOfWeek

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetail

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

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

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

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

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

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

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

GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetailDaysOfWeek

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowDetailMonth

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructureMaintenanceWindowMonth

Name This property is required. string
Name of the month of the year.
Name This property is required. string
Name of the month of the year.
name This property is required. String
Name of the month of the year.
name This property is required. string
Name of the month of the year.
name This property is required. str
Name of the month of the year.
name This property is required. String
Name of the month of the year.

GetAutonomousExadataInfrastructuresFilter

Name This property is required. string
Name of the month of the year.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Name of the month of the year.
Values This property is required. []string
Regex bool
name This property is required. String
Name of the month of the year.
values This property is required. List<String>
regex Boolean
name This property is required. string
Name of the month of the year.
values This property is required. string[]
regex boolean
name This property is required. str
Name of the month of the year.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Name of the month of the year.
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.