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

oci.Database.getCloudExadataInfrastructures

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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

Gets a list of the cloud Exadata infrastructure resources in the specified compartment. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only.

Example Usage

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

const testCloudExadataInfrastructures = oci.Database.getCloudExadataInfrastructures({
    compartmentId: compartmentId,
    clusterPlacementGroupId: cloudExadataInfrastructureClusterPlacementGroupId,
    displayName: cloudExadataInfrastructureDisplayName,
    state: cloudExadataInfrastructureState,
});
Copy
import pulumi
import pulumi_oci as oci

test_cloud_exadata_infrastructures = oci.Database.get_cloud_exadata_infrastructures(compartment_id=compartment_id,
    cluster_placement_group_id=cloud_exadata_infrastructure_cluster_placement_group_id,
    display_name=cloud_exadata_infrastructure_display_name,
    state=cloud_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.GetCloudExadataInfrastructures(ctx, &database.GetCloudExadataInfrastructuresArgs{
			CompartmentId:           compartmentId,
			ClusterPlacementGroupId: pulumi.StringRef(cloudExadataInfrastructureClusterPlacementGroupId),
			DisplayName:             pulumi.StringRef(cloudExadataInfrastructureDisplayName),
			State:                   pulumi.StringRef(cloudExadataInfrastructureState),
		}, 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 testCloudExadataInfrastructures = Oci.Database.GetCloudExadataInfrastructures.Invoke(new()
    {
        CompartmentId = compartmentId,
        ClusterPlacementGroupId = cloudExadataInfrastructureClusterPlacementGroupId,
        DisplayName = cloudExadataInfrastructureDisplayName,
        State = cloudExadataInfrastructureState,
    });

});
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.GetCloudExadataInfrastructuresArgs;
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 testCloudExadataInfrastructures = DatabaseFunctions.getCloudExadataInfrastructures(GetCloudExadataInfrastructuresArgs.builder()
            .compartmentId(compartmentId)
            .clusterPlacementGroupId(cloudExadataInfrastructureClusterPlacementGroupId)
            .displayName(cloudExadataInfrastructureDisplayName)
            .state(cloudExadataInfrastructureState)
            .build());

    }
}
Copy
variables:
  testCloudExadataInfrastructures:
    fn::invoke:
      function: oci:Database:getCloudExadataInfrastructures
      arguments:
        compartmentId: ${compartmentId}
        clusterPlacementGroupId: ${cloudExadataInfrastructureClusterPlacementGroupId}
        displayName: ${cloudExadataInfrastructureDisplayName}
        state: ${cloudExadataInfrastructureState}
Copy

Using getCloudExadataInfrastructures

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 getCloudExadataInfrastructures(args: GetCloudExadataInfrastructuresArgs, opts?: InvokeOptions): Promise<GetCloudExadataInfrastructuresResult>
function getCloudExadataInfrastructuresOutput(args: GetCloudExadataInfrastructuresOutputArgs, opts?: InvokeOptions): Output<GetCloudExadataInfrastructuresResult>
Copy
def get_cloud_exadata_infrastructures(cluster_placement_group_id: Optional[str] = None,
                                      compartment_id: Optional[str] = None,
                                      display_name: Optional[str] = None,
                                      filters: Optional[Sequence[_database.GetCloudExadataInfrastructuresFilter]] = None,
                                      state: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetCloudExadataInfrastructuresResult
def get_cloud_exadata_infrastructures_output(cluster_placement_group_id: 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.GetCloudExadataInfrastructuresFilterArgs]]]] = None,
                                      state: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetCloudExadataInfrastructuresResult]
Copy
func GetCloudExadataInfrastructures(ctx *Context, args *GetCloudExadataInfrastructuresArgs, opts ...InvokeOption) (*GetCloudExadataInfrastructuresResult, error)
func GetCloudExadataInfrastructuresOutput(ctx *Context, args *GetCloudExadataInfrastructuresOutputArgs, opts ...InvokeOption) GetCloudExadataInfrastructuresResultOutput
Copy

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

public static class GetCloudExadataInfrastructures 
{
    public static Task<GetCloudExadataInfrastructuresResult> InvokeAsync(GetCloudExadataInfrastructuresArgs args, InvokeOptions? opts = null)
    public static Output<GetCloudExadataInfrastructuresResult> Invoke(GetCloudExadataInfrastructuresInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetCloudExadataInfrastructuresResult> getCloudExadataInfrastructures(GetCloudExadataInfrastructuresArgs args, InvokeOptions options)
public static Output<GetCloudExadataInfrastructuresResult> getCloudExadataInfrastructures(GetCloudExadataInfrastructuresArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getCloudExadataInfrastructures:getCloudExadataInfrastructures
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The compartment OCID.
ClusterPlacementGroupId string
A filter to return only resources that match the given cluster placement group ID 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<GetCloudExadataInfrastructuresFilter>
State string
A filter to return only resources that match the given lifecycle state exactly.
CompartmentId This property is required. string
The compartment OCID.
ClusterPlacementGroupId string
A filter to return only resources that match the given cluster placement group ID 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. []GetCloudExadataInfrastructuresFilter
State string
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
clusterPlacementGroupId String
A filter to return only resources that match the given cluster placement group ID 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<GetCloudExadataInfrastructuresFilter>
state String
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. string
The compartment OCID.
clusterPlacementGroupId string
A filter to return only resources that match the given cluster placement group ID 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. GetCloudExadataInfrastructuresFilter[]
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.
cluster_placement_group_id str
A filter to return only resources that match the given cluster placement group ID 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.GetCloudExadataInfrastructuresFilter]
state str
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
clusterPlacementGroupId String
A filter to return only resources that match the given cluster placement group ID 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.

getCloudExadataInfrastructures Result

The following output properties are available:

CloudExadataInfrastructures List<GetCloudExadataInfrastructuresCloudExadataInfrastructure>
The list of cloud_exadata_infrastructures.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
ClusterPlacementGroupId string
The OCID of the cluster placement group of the Exadata Infrastructure.
DisplayName string
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
Filters List<GetCloudExadataInfrastructuresFilter>
State string
The current lifecycle state of the cloud Exadata infrastructure resource.
CloudExadataInfrastructures []GetCloudExadataInfrastructuresCloudExadataInfrastructure
The list of cloud_exadata_infrastructures.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
ClusterPlacementGroupId string
The OCID of the cluster placement group of the Exadata Infrastructure.
DisplayName string
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
Filters []GetCloudExadataInfrastructuresFilter
State string
The current lifecycle state of the cloud Exadata infrastructure resource.
cloudExadataInfrastructures List<GetCloudExadataInfrastructuresCloudExadataInfrastructure>
The list of cloud_exadata_infrastructures.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
clusterPlacementGroupId String
The OCID of the cluster placement group of the Exadata Infrastructure.
displayName String
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
filters List<GetCloudExadataInfrastructuresFilter>
state String
The current lifecycle state of the cloud Exadata infrastructure resource.
cloudExadataInfrastructures GetCloudExadataInfrastructuresCloudExadataInfrastructure[]
The list of cloud_exadata_infrastructures.
compartmentId string
The OCID of the compartment.
id string
The provider-assigned unique ID for this managed resource.
clusterPlacementGroupId string
The OCID of the cluster placement group of the Exadata Infrastructure.
displayName string
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
filters GetCloudExadataInfrastructuresFilter[]
state string
The current lifecycle state of the cloud Exadata infrastructure resource.
cloud_exadata_infrastructures Sequence[database.GetCloudExadataInfrastructuresCloudExadataInfrastructure]
The list of cloud_exadata_infrastructures.
compartment_id str
The OCID of the compartment.
id str
The provider-assigned unique ID for this managed resource.
cluster_placement_group_id str
The OCID of the cluster placement group of the Exadata Infrastructure.
display_name str
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
filters Sequence[database.GetCloudExadataInfrastructuresFilter]
state str
The current lifecycle state of the cloud Exadata infrastructure resource.
cloudExadataInfrastructures List<Property Map>
The list of cloud_exadata_infrastructures.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
clusterPlacementGroupId String
The OCID of the cluster placement group of the Exadata Infrastructure.
displayName String
The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
filters List<Property Map>
state String
The current lifecycle state of the cloud Exadata infrastructure resource.

Supporting Types

GetCloudExadataInfrastructuresCloudExadataInfrastructure

ActivatedStorageCount This property is required. int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalStorageCount This property is required. int
The requested number of additional storage servers for the Exadata infrastructure.
AvailabilityDomain This property is required. string
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
AvailableStorageSizeInGbs This property is required. int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ClusterPlacementGroupId This property is required. string
A filter to return only resources that match the given cluster placement group ID exactly.
CompartmentId This property is required. string
The compartment OCID.
ComputeCount This property is required. int
The number of compute servers for the cloud Exadata infrastructure.
ComputeModel This property is required. string
The compute model of the Exadata infrastructure.
CpuCount This property is required. int
The total number of CPU cores allocated.
CustomerContacts This property is required. List<GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContact>
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
DataStorageSizeInTbs This property is required. double
Size, in terabytes, of the DATA disk group.
DatabaseServerType This property is required. string
The database server type of the Exadata infrastructure.
DbNodeStorageSizeInGbs This property is required. int
The local node storage allocated in GBs.
DbServerVersion This property is required. string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
DefinedFileSystemConfigurations This property is required. List<GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfiguration>
Details of the file system configuration of the Exadata infrastructure.
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.
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"}
Id This property is required. string
The OCID of the cloud Exadata infrastructure resource.
IsSchedulingPolicyAssociated This property is required. bool
If true, the infrastructure is using granular maintenance scheduling preference.
LastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaintenanceWindows This property is required. List<GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount This property is required. int
The total number of CPU cores available.
MaxDataStorageInTbs This property is required. double
The total available DATA disk group size.
MaxDbNodeStorageInGbs This property is required. int
The total local node storage available in GBs.
MaxMemoryInGbs This property is required. int
The total memory available in GBs.
MemorySizeInGbs This property is required. int
The memory allocated in GBs.
MonthlyDbServerVersion This property is required. string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
MonthlyStorageServerVersion This property is required. string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
NextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
Shape This property is required. string
The model name of the cloud Exadata infrastructure resource.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
StorageCount This property is required. int
The number of storage servers for the cloud Exadata infrastructure.
StorageServerType This property is required. string
The storage server type of the Exadata infrastructure.
StorageServerVersion This property is required. string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
SubscriptionId This property is required. string
The OCID of the subscription with which resource needs to be associated with.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated This property is required. string
The date and time the cloud Exadata infrastructure resource was created.
TotalStorageSizeInGbs This property is required. int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ActivatedStorageCount This property is required. int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalStorageCount This property is required. int
The requested number of additional storage servers for the Exadata infrastructure.
AvailabilityDomain This property is required. string
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
AvailableStorageSizeInGbs This property is required. int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ClusterPlacementGroupId This property is required. string
A filter to return only resources that match the given cluster placement group ID exactly.
CompartmentId This property is required. string
The compartment OCID.
ComputeCount This property is required. int
The number of compute servers for the cloud Exadata infrastructure.
ComputeModel This property is required. string
The compute model of the Exadata infrastructure.
CpuCount This property is required. int
The total number of CPU cores allocated.
CustomerContacts This property is required. []GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContact
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
DataStorageSizeInTbs This property is required. float64
Size, in terabytes, of the DATA disk group.
DatabaseServerType This property is required. string
The database server type of the Exadata infrastructure.
DbNodeStorageSizeInGbs This property is required. int
The local node storage allocated in GBs.
DbServerVersion This property is required. string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
DefinedFileSystemConfigurations This property is required. []GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfiguration
Details of the file system configuration of the Exadata infrastructure.
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.
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"}
Id This property is required. string
The OCID of the cloud Exadata infrastructure resource.
IsSchedulingPolicyAssociated This property is required. bool
If true, the infrastructure is using granular maintenance scheduling preference.
LastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaintenanceWindows This property is required. []GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindow
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount This property is required. int
The total number of CPU cores available.
MaxDataStorageInTbs This property is required. float64
The total available DATA disk group size.
MaxDbNodeStorageInGbs This property is required. int
The total local node storage available in GBs.
MaxMemoryInGbs This property is required. int
The total memory available in GBs.
MemorySizeInGbs This property is required. int
The memory allocated in GBs.
MonthlyDbServerVersion This property is required. string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
MonthlyStorageServerVersion This property is required. string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
NextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
Shape This property is required. string
The model name of the cloud Exadata infrastructure resource.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
StorageCount This property is required. int
The number of storage servers for the cloud Exadata infrastructure.
StorageServerType This property is required. string
The storage server type of the Exadata infrastructure.
StorageServerVersion This property is required. string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
SubscriptionId This property is required. string
The OCID of the subscription with which resource needs to be associated with.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated This property is required. string
The date and time the cloud Exadata infrastructure resource was created.
TotalStorageSizeInGbs This property is required. int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount This property is required. Integer
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount This property is required. Integer
The requested number of additional storage servers for the Exadata infrastructure.
availabilityDomain This property is required. String
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
availableStorageSizeInGbs This property is required. Integer
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
clusterPlacementGroupId This property is required. String
A filter to return only resources that match the given cluster placement group ID exactly.
compartmentId This property is required. String
The compartment OCID.
computeCount This property is required. Integer
The number of compute servers for the cloud Exadata infrastructure.
computeModel This property is required. String
The compute model of the Exadata infrastructure.
cpuCount This property is required. Integer
The total number of CPU cores allocated.
customerContacts This property is required. List<GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContact>
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
dataStorageSizeInTbs This property is required. Double
Size, in terabytes, of the DATA disk group.
databaseServerType This property is required. String
The database server type of the Exadata infrastructure.
dbNodeStorageSizeInGbs This property is required. Integer
The local node storage allocated in GBs.
dbServerVersion This property is required. String
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations This property is required. List<GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfiguration>
Details of the file system configuration of the Exadata infrastructure.
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.
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"}
id This property is required. String
The OCID of the cloud Exadata infrastructure resource.
isSchedulingPolicyAssociated This property is required. Boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId This property is required. String
The OCID of the last maintenance run.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
maintenanceWindows This property is required. List<GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount This property is required. Integer
The total number of CPU cores available.
maxDataStorageInTbs This property is required. Double
The total available DATA disk group size.
maxDbNodeStorageInGbs This property is required. Integer
The total local node storage available in GBs.
maxMemoryInGbs This property is required. Integer
The total memory available in GBs.
memorySizeInGbs This property is required. Integer
The memory allocated in GBs.
monthlyDbServerVersion This property is required. String
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion This property is required. String
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId This property is required. String
The OCID of the next maintenance run.
shape This property is required. String
The model name of the cloud Exadata infrastructure resource.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
storageCount This property is required. Integer
The number of storage servers for the cloud Exadata infrastructure.
storageServerType This property is required. String
The storage server type of the Exadata infrastructure.
storageServerVersion This property is required. String
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscriptionId This property is required. String
The OCID of the subscription with which resource needs to be associated with.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated This property is required. String
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs This property is required. Integer
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount This property is required. number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount This property is required. number
The requested number of additional storage servers for the Exadata infrastructure.
availabilityDomain This property is required. string
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
availableStorageSizeInGbs This property is required. number
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
clusterPlacementGroupId This property is required. string
A filter to return only resources that match the given cluster placement group ID exactly.
compartmentId This property is required. string
The compartment OCID.
computeCount This property is required. number
The number of compute servers for the cloud Exadata infrastructure.
computeModel This property is required. string
The compute model of the Exadata infrastructure.
cpuCount This property is required. number
The total number of CPU cores allocated.
customerContacts This property is required. GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContact[]
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
dataStorageSizeInTbs This property is required. number
Size, in terabytes, of the DATA disk group.
databaseServerType This property is required. string
The database server type of the Exadata infrastructure.
dbNodeStorageSizeInGbs This property is required. number
The local node storage allocated in GBs.
dbServerVersion This property is required. string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations This property is required. GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfiguration[]
Details of the file system configuration of the Exadata infrastructure.
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.
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"}
id This property is required. string
The OCID of the cloud Exadata infrastructure resource.
isSchedulingPolicyAssociated This property is required. boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId This property is required. string
The OCID of the last maintenance run.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
maintenanceWindows This property is required. GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindow[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount This property is required. number
The total number of CPU cores available.
maxDataStorageInTbs This property is required. number
The total available DATA disk group size.
maxDbNodeStorageInGbs This property is required. number
The total local node storage available in GBs.
maxMemoryInGbs This property is required. number
The total memory available in GBs.
memorySizeInGbs This property is required. number
The memory allocated in GBs.
monthlyDbServerVersion This property is required. string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion This property is required. string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId This property is required. string
The OCID of the next maintenance run.
shape This property is required. string
The model name of the cloud Exadata infrastructure resource.
state This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
storageCount This property is required. number
The number of storage servers for the cloud Exadata infrastructure.
storageServerType This property is required. string
The storage server type of the Exadata infrastructure.
storageServerVersion This property is required. string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscriptionId This property is required. string
The OCID of the subscription with which resource needs to be associated with.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated This property is required. string
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs This property is required. number
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activated_storage_count This property is required. int
The requested number of additional storage servers activated for the Exadata infrastructure.
additional_storage_count This property is required. int
The requested number of additional storage servers for the Exadata infrastructure.
availability_domain This property is required. str
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
available_storage_size_in_gbs This property is required. int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
cluster_placement_group_id This property is required. str
A filter to return only resources that match the given cluster placement group ID exactly.
compartment_id This property is required. str
The compartment OCID.
compute_count This property is required. int
The number of compute servers for the cloud Exadata infrastructure.
compute_model This property is required. str
The compute model of the Exadata infrastructure.
cpu_count This property is required. int
The total number of CPU cores allocated.
customer_contacts This property is required. Sequence[database.GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContact]
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
data_storage_size_in_tbs This property is required. float
Size, in terabytes, of the DATA disk group.
database_server_type This property is required. str
The database server type of the Exadata infrastructure.
db_node_storage_size_in_gbs This property is required. int
The local node storage allocated in GBs.
db_server_version This property is required. str
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
defined_file_system_configurations This property is required. Sequence[database.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfiguration]
Details of the file system configuration of the Exadata infrastructure.
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.
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"}
id This property is required. str
The OCID of the cloud Exadata infrastructure resource.
is_scheduling_policy_associated This property is required. bool
If true, the infrastructure is using granular maintenance scheduling preference.
last_maintenance_run_id This property is required. str
The OCID of the last maintenance run.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
maintenance_windows This property is required. Sequence[database.GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindow]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
max_cpu_count This property is required. int
The total number of CPU cores available.
max_data_storage_in_tbs This property is required. float
The total available DATA disk group size.
max_db_node_storage_in_gbs This property is required. int
The total local node storage available in GBs.
max_memory_in_gbs This property is required. int
The total memory available in GBs.
memory_size_in_gbs This property is required. int
The memory allocated in GBs.
monthly_db_server_version This property is required. str
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthly_storage_server_version This property is required. str
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
next_maintenance_run_id This property is required. str
The OCID of the next maintenance run.
shape This property is required. str
The model name of the cloud Exadata infrastructure resource.
state This property is required. str
A filter to return only resources that match the given lifecycle state exactly.
storage_count This property is required. int
The number of storage servers for the cloud Exadata infrastructure.
storage_server_type This property is required. str
The storage server type of the Exadata infrastructure.
storage_server_version This property is required. str
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscription_id This property is required. str
The OCID of the subscription with which resource needs to be associated with.
system_tags This property is required. Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
time_created This property is required. str
The date and time the cloud Exadata infrastructure resource was created.
total_storage_size_in_gbs This property is required. int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount This property is required. Number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount This property is required. Number
The requested number of additional storage servers for the Exadata infrastructure.
availabilityDomain This property is required. String
The name of the availability domain that the cloud Exadata infrastructure resource is located in.
availableStorageSizeInGbs This property is required. Number
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
clusterPlacementGroupId This property is required. String
A filter to return only resources that match the given cluster placement group ID exactly.
compartmentId This property is required. String
The compartment OCID.
computeCount This property is required. Number
The number of compute servers for the cloud Exadata infrastructure.
computeModel This property is required. String
The compute model of the Exadata infrastructure.
cpuCount This property is required. Number
The total number of CPU cores allocated.
customerContacts This property is required. List<Property Map>
The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
dataStorageSizeInTbs This property is required. Number
Size, in terabytes, of the DATA disk group.
databaseServerType This property is required. String
The database server type of the Exadata infrastructure.
dbNodeStorageSizeInGbs This property is required. Number
The local node storage allocated in GBs.
dbServerVersion This property is required. String
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations This property is required. List<Property Map>
Details of the file system configuration of the Exadata infrastructure.
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.
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"}
id This property is required. String
The OCID of the cloud Exadata infrastructure resource.
isSchedulingPolicyAssociated This property is required. Boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId This property is required. String
The OCID of the last maintenance run.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
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.
maxCpuCount This property is required. Number
The total number of CPU cores available.
maxDataStorageInTbs This property is required. Number
The total available DATA disk group size.
maxDbNodeStorageInGbs This property is required. Number
The total local node storage available in GBs.
maxMemoryInGbs This property is required. Number
The total memory available in GBs.
memorySizeInGbs This property is required. Number
The memory allocated in GBs.
monthlyDbServerVersion This property is required. String
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion This property is required. String
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId This property is required. String
The OCID of the next maintenance run.
shape This property is required. String
The model name of the cloud Exadata infrastructure resource.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
storageCount This property is required. Number
The number of storage servers for the cloud Exadata infrastructure.
storageServerType This property is required. String
The storage server type of the Exadata infrastructure.
storageServerVersion This property is required. String
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscriptionId This property is required. String
The OCID of the subscription with which resource needs to be associated with.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated This property is required. String
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs This property is required. Number
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).

GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContact

Email This property is required. string
The email address used by Oracle to send notifications regarding databases and infrastructure.
Email This property is required. string
The email address used by Oracle to send notifications regarding databases and infrastructure.
email This property is required. String
The email address used by Oracle to send notifications regarding databases and infrastructure.
email This property is required. string
The email address used by Oracle to send notifications regarding databases and infrastructure.
email This property is required. str
The email address used by Oracle to send notifications regarding databases and infrastructure.
email This property is required. String
The email address used by Oracle to send notifications regarding databases and infrastructure.

GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfiguration

IsBackupPartition This property is required. bool
If true, the file system is used to create a backup prior to Exadata VM OS update.
IsResizable This property is required. bool
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
MinSizeGb This property is required. int
The minimum size of file system.
MountPoint This property is required. string
The mount point of file system.
IsBackupPartition This property is required. bool
If true, the file system is used to create a backup prior to Exadata VM OS update.
IsResizable This property is required. bool
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
MinSizeGb This property is required. int
The minimum size of file system.
MountPoint This property is required. string
The mount point of file system.
isBackupPartition This property is required. Boolean
If true, the file system is used to create a backup prior to Exadata VM OS update.
isResizable This property is required. Boolean
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
minSizeGb This property is required. Integer
The minimum size of file system.
mountPoint This property is required. String
The mount point of file system.
isBackupPartition This property is required. boolean
If true, the file system is used to create a backup prior to Exadata VM OS update.
isResizable This property is required. boolean
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
minSizeGb This property is required. number
The minimum size of file system.
mountPoint This property is required. string
The mount point of file system.
is_backup_partition This property is required. bool
If true, the file system is used to create a backup prior to Exadata VM OS update.
is_resizable This property is required. bool
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
min_size_gb This property is required. int
The minimum size of file system.
mount_point This property is required. str
The mount point of file system.
isBackupPartition This property is required. Boolean
If true, the file system is used to create a backup prior to Exadata VM OS update.
isResizable This property is required. Boolean
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
minSizeGb This property is required. Number
The minimum size of file system.
mountPoint This property is required. String
The mount point of file system.

GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindow

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<GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeek>
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<GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonth>
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. []GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeek
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. []GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonth
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<GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeek>
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<GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonth>
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. GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeek[]
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. GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonth[]
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.GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeek]
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.GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonth]
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.

GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeek

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.

GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonth

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.

GetCloudExadataInfrastructuresFilter

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.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi