1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. CloudExadataInfrastructureConfigureExascaleManagement
Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi

oci.Database.CloudExadataInfrastructureConfigureExascaleManagement

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi

    This resource provides the Cloud Exadata Infrastructure Configure Exascale Management resource in Oracle Cloud Infrastructure Database service.

    Configures Exascale on Cloud exadata infrastructure resource. Applies to Exadata Cloud Service instances only.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudExadataInfrastructureConfigureExascaleManagement = new oci.database.CloudExadataInfrastructureConfigureExascaleManagement("test_cloud_exadata_infrastructure_configure_exascale_management", {
        cloudExadataInfrastructureId: testCloudExadataInfrastructure.id,
        totalStorageInGbs: cloudExadataInfrastructureConfigureExascaleManagementTotalStorageInGbs,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_exadata_infrastructure_configure_exascale_management = oci.database.CloudExadataInfrastructureConfigureExascaleManagement("test_cloud_exadata_infrastructure_configure_exascale_management",
        cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
        total_storage_in_gbs=cloud_exadata_infrastructure_configure_exascale_management_total_storage_in_gbs)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := database.NewCloudExadataInfrastructureConfigureExascaleManagement(ctx, "test_cloud_exadata_infrastructure_configure_exascale_management", &database.CloudExadataInfrastructureConfigureExascaleManagementArgs{
    			CloudExadataInfrastructureId: pulumi.Any(testCloudExadataInfrastructure.Id),
    			TotalStorageInGbs:            pulumi.Any(cloudExadataInfrastructureConfigureExascaleManagementTotalStorageInGbs),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testCloudExadataInfrastructureConfigureExascaleManagement = new Oci.Database.CloudExadataInfrastructureConfigureExascaleManagement("test_cloud_exadata_infrastructure_configure_exascale_management", new()
        {
            CloudExadataInfrastructureId = testCloudExadataInfrastructure.Id,
            TotalStorageInGbs = cloudExadataInfrastructureConfigureExascaleManagementTotalStorageInGbs,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.CloudExadataInfrastructureConfigureExascaleManagement;
    import com.pulumi.oci.Database.CloudExadataInfrastructureConfigureExascaleManagementArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testCloudExadataInfrastructureConfigureExascaleManagement = new CloudExadataInfrastructureConfigureExascaleManagement("testCloudExadataInfrastructureConfigureExascaleManagement", CloudExadataInfrastructureConfigureExascaleManagementArgs.builder()
                .cloudExadataInfrastructureId(testCloudExadataInfrastructure.id())
                .totalStorageInGbs(cloudExadataInfrastructureConfigureExascaleManagementTotalStorageInGbs)
                .build());
    
        }
    }
    
    resources:
      testCloudExadataInfrastructureConfigureExascaleManagement:
        type: oci:Database:CloudExadataInfrastructureConfigureExascaleManagement
        name: test_cloud_exadata_infrastructure_configure_exascale_management
        properties:
          cloudExadataInfrastructureId: ${testCloudExadataInfrastructure.id}
          totalStorageInGbs: ${cloudExadataInfrastructureConfigureExascaleManagementTotalStorageInGbs}
    

    Create CloudExadataInfrastructureConfigureExascaleManagement Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CloudExadataInfrastructureConfigureExascaleManagement(name: string, args: CloudExadataInfrastructureConfigureExascaleManagementArgs, opts?: CustomResourceOptions);
    @overload
    def CloudExadataInfrastructureConfigureExascaleManagement(resource_name: str,
                                                              args: CloudExadataInfrastructureConfigureExascaleManagementArgs,
                                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudExadataInfrastructureConfigureExascaleManagement(resource_name: str,
                                                              opts: Optional[ResourceOptions] = None,
                                                              cloud_exadata_infrastructure_id: Optional[str] = None,
                                                              total_storage_in_gbs: Optional[int] = None)
    func NewCloudExadataInfrastructureConfigureExascaleManagement(ctx *Context, name string, args CloudExadataInfrastructureConfigureExascaleManagementArgs, opts ...ResourceOption) (*CloudExadataInfrastructureConfigureExascaleManagement, error)
    public CloudExadataInfrastructureConfigureExascaleManagement(string name, CloudExadataInfrastructureConfigureExascaleManagementArgs args, CustomResourceOptions? opts = null)
    public CloudExadataInfrastructureConfigureExascaleManagement(String name, CloudExadataInfrastructureConfigureExascaleManagementArgs args)
    public CloudExadataInfrastructureConfigureExascaleManagement(String name, CloudExadataInfrastructureConfigureExascaleManagementArgs args, CustomResourceOptions options)
    
    type: oci:Database:CloudExadataInfrastructureConfigureExascaleManagement
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var cloudExadataInfrastructureConfigureExascaleManagementResource = new Oci.Database.CloudExadataInfrastructureConfigureExascaleManagement("cloudExadataInfrastructureConfigureExascaleManagementResource", new()
    {
        CloudExadataInfrastructureId = "string",
        TotalStorageInGbs = 0,
    });
    
    example, err := database.NewCloudExadataInfrastructureConfigureExascaleManagement(ctx, "cloudExadataInfrastructureConfigureExascaleManagementResource", &database.CloudExadataInfrastructureConfigureExascaleManagementArgs{
    	CloudExadataInfrastructureId: pulumi.String("string"),
    	TotalStorageInGbs:            pulumi.Int(0),
    })
    
    var cloudExadataInfrastructureConfigureExascaleManagementResource = new CloudExadataInfrastructureConfigureExascaleManagement("cloudExadataInfrastructureConfigureExascaleManagementResource", CloudExadataInfrastructureConfigureExascaleManagementArgs.builder()
        .cloudExadataInfrastructureId("string")
        .totalStorageInGbs(0)
        .build());
    
    cloud_exadata_infrastructure_configure_exascale_management_resource = oci.database.CloudExadataInfrastructureConfigureExascaleManagement("cloudExadataInfrastructureConfigureExascaleManagementResource",
        cloud_exadata_infrastructure_id="string",
        total_storage_in_gbs=0)
    
    const cloudExadataInfrastructureConfigureExascaleManagementResource = new oci.database.CloudExadataInfrastructureConfigureExascaleManagement("cloudExadataInfrastructureConfigureExascaleManagementResource", {
        cloudExadataInfrastructureId: "string",
        totalStorageInGbs: 0,
    });
    
    type: oci:Database:CloudExadataInfrastructureConfigureExascaleManagement
    properties:
        cloudExadataInfrastructureId: string
        totalStorageInGbs: 0
    

    CloudExadataInfrastructureConfigureExascaleManagement Resource Properties

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

    Inputs

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

    The CloudExadataInfrastructureConfigureExascaleManagement resource accepts the following input properties:

    CloudExadataInfrastructureId string
    The cloud Exadata infrastructure OCID.
    TotalStorageInGbs int

    Storage size needed for Exascale in GBs.

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

    CloudExadataInfrastructureId string
    The cloud Exadata infrastructure OCID.
    TotalStorageInGbs int

    Storage size needed for Exascale in GBs.

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

    cloudExadataInfrastructureId String
    The cloud Exadata infrastructure OCID.
    totalStorageInGbs Integer

    Storage size needed for Exascale in GBs.

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

    cloudExadataInfrastructureId string
    The cloud Exadata infrastructure OCID.
    totalStorageInGbs number

    Storage size needed for Exascale in GBs.

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

    cloud_exadata_infrastructure_id str
    The cloud Exadata infrastructure OCID.
    total_storage_in_gbs int

    Storage size needed for Exascale in GBs.

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

    cloudExadataInfrastructureId String
    The cloud Exadata infrastructure OCID.
    totalStorageInGbs Number

    Storage size needed for Exascale in GBs.

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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CloudExadataInfrastructureConfigureExascaleManagement resource produces the following output properties:

    ActivatedStorageCount int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    AdditionalStorageCount int
    The requested number of additional storage servers for the Exadata infrastructure.
    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    AvailableStorageSizeInGbs int
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    ClusterPlacementGroupId string
    The OCID of the cluster placement group of the Exadata Infrastructure.
    CompartmentId string
    The OCID of the compartment.
    ComputeCount int
    The number of compute servers for the cloud Exadata infrastructure.
    CpuCount int
    The total number of CPU cores allocated.
    CustomerContacts List<CloudExadataInfrastructureConfigureExascaleManagementCustomerContact>
    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 double
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServerVersion string
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    DefinedFileSystemConfigurations List<CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration>
    Details of the file system configuration of the Exadata infrastructure.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    ExascaleConfigs List<CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig>
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    FreeformTags 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 string
    The provider-assigned unique ID for this managed resource.
    IsSchedulingPolicyAssociated bool
    If true, the infrastructure is using granular maintenance scheduling preference.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindows List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxCpuCount int
    The total number of CPU cores available.
    MaxDataStorageInTbs double
    The total available DATA disk group size.
    MaxDbNodeStorageInGbs int
    The total local node storage available in GBs.
    MaxMemoryInGbs int
    The total memory available in GBs.
    MemorySizeInGbs int
    The memory allocated in GBs.
    MonthlyDbServerVersion string
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    Shape string
    The model name of the cloud Exadata infrastructure resource.
    State string
    The current lifecycle state of the cloud Exadata infrastructure resource.
    StorageCount int
    The number of storage servers for the cloud Exadata infrastructure.
    StorageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    SubscriptionId string
    The OCID of the subscription with which resource needs to be associated with.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    TotalStorageSizeInGbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    ActivatedStorageCount int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    AdditionalStorageCount int
    The requested number of additional storage servers for the Exadata infrastructure.
    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    AvailableStorageSizeInGbs int
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    ClusterPlacementGroupId string
    The OCID of the cluster placement group of the Exadata Infrastructure.
    CompartmentId string
    The OCID of the compartment.
    ComputeCount int
    The number of compute servers for the cloud Exadata infrastructure.
    CpuCount int
    The total number of CPU cores allocated.
    CustomerContacts []CloudExadataInfrastructureConfigureExascaleManagementCustomerContact
    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 float64
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServerVersion string
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    DefinedFileSystemConfigurations []CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration
    Details of the file system configuration of the Exadata infrastructure.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    ExascaleConfigs []CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    FreeformTags 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 string
    The provider-assigned unique ID for this managed resource.
    IsSchedulingPolicyAssociated bool
    If true, the infrastructure is using granular maintenance scheduling preference.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindows []CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxCpuCount int
    The total number of CPU cores available.
    MaxDataStorageInTbs float64
    The total available DATA disk group size.
    MaxDbNodeStorageInGbs int
    The total local node storage available in GBs.
    MaxMemoryInGbs int
    The total memory available in GBs.
    MemorySizeInGbs int
    The memory allocated in GBs.
    MonthlyDbServerVersion string
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    Shape string
    The model name of the cloud Exadata infrastructure resource.
    State string
    The current lifecycle state of the cloud Exadata infrastructure resource.
    StorageCount int
    The number of storage servers for the cloud Exadata infrastructure.
    StorageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    SubscriptionId string
    The OCID of the subscription with which resource needs to be associated with.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    TotalStorageSizeInGbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount Integer
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount Integer
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    availableStorageSizeInGbs Integer
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    clusterPlacementGroupId String
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartmentId String
    The OCID of the compartment.
    computeCount Integer
    The number of compute servers for the cloud Exadata infrastructure.
    cpuCount Integer
    The total number of CPU cores allocated.
    customerContacts List<CloudExadataInfrastructureConfigureExascaleManagementCustomerContact>
    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 Double
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Integer
    The local node storage allocated in GBs.
    dbServerVersion String
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    definedFileSystemConfigurations List<CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration>
    Details of the file system configuration of the Exadata infrastructure.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascaleConfigs List<CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig>
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeformTags 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 String
    The provider-assigned unique ID for this managed resource.
    isSchedulingPolicyAssociated Boolean
    If true, the infrastructure is using granular maintenance scheduling preference.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindows List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxCpuCount Integer
    The total number of CPU cores available.
    maxDataStorageInTbs Double
    The total available DATA disk group size.
    maxDbNodeStorageInGbs Integer
    The total local node storage available in GBs.
    maxMemoryInGbs Integer
    The total memory available in GBs.
    memorySizeInGbs Integer
    The memory allocated in GBs.
    monthlyDbServerVersion String
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthlyStorageServerVersion String
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    shape String
    The model name of the cloud Exadata infrastructure resource.
    state String
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storageCount Integer
    The number of storage servers for the cloud Exadata infrastructure.
    storageServerVersion String
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscriptionId String
    The OCID of the subscription with which resource needs to be associated with.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageSizeInGbs Integer
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount number
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount number
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    availableStorageSizeInGbs number
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    clusterPlacementGroupId string
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartmentId string
    The OCID of the compartment.
    computeCount number
    The number of compute servers for the cloud Exadata infrastructure.
    cpuCount number
    The total number of CPU cores allocated.
    customerContacts CloudExadataInfrastructureConfigureExascaleManagementCustomerContact[]
    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 number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs number
    The local node storage allocated in GBs.
    dbServerVersion string
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    definedFileSystemConfigurations CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration[]
    Details of the file system configuration of the Exadata infrastructure.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascaleConfigs CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig[]
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeformTags {[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 string
    The provider-assigned unique ID for this managed resource.
    isSchedulingPolicyAssociated boolean
    If true, the infrastructure is using granular maintenance scheduling preference.
    lastMaintenanceRunId string
    The OCID of the last maintenance run.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    maintenanceWindows CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow[]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxCpuCount number
    The total number of CPU cores available.
    maxDataStorageInTbs number
    The total available DATA disk group size.
    maxDbNodeStorageInGbs number
    The total local node storage available in GBs.
    maxMemoryInGbs number
    The total memory available in GBs.
    memorySizeInGbs number
    The memory allocated in GBs.
    monthlyDbServerVersion string
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthlyStorageServerVersion string
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    nextMaintenanceRunId string
    The OCID of the next maintenance run.
    shape string
    The model name of the cloud Exadata infrastructure resource.
    state string
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storageCount number
    The number of storage servers for the cloud Exadata infrastructure.
    storageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscriptionId string
    The OCID of the subscription with which resource needs to be associated with.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageSizeInGbs number
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activated_storage_count int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additional_storage_count int
    The requested number of additional storage servers for the Exadata infrastructure.
    availability_domain str
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    available_storage_size_in_gbs int
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    cluster_placement_group_id str
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartment_id str
    The OCID of the compartment.
    compute_count int
    The number of compute servers for the cloud Exadata infrastructure.
    cpu_count int
    The total number of CPU cores allocated.
    customer_contacts Sequence[CloudExadataInfrastructureConfigureExascaleManagementCustomerContact]
    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 float
    Size, in terabytes, of the DATA disk group.
    db_node_storage_size_in_gbs int
    The local node storage allocated in GBs.
    db_server_version str
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    defined_file_system_configurations Sequence[CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration]
    Details of the file system configuration of the Exadata infrastructure.
    defined_tags 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 str
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascale_configs Sequence[CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig]
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeform_tags 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 str
    The provider-assigned unique ID for this managed resource.
    is_scheduling_policy_associated bool
    If true, the infrastructure is using granular maintenance scheduling preference.
    last_maintenance_run_id str
    The OCID of the last maintenance run.
    lifecycle_details str
    Additional information about the current lifecycle state.
    maintenance_windows Sequence[CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    max_cpu_count int
    The total number of CPU cores available.
    max_data_storage_in_tbs float
    The total available DATA disk group size.
    max_db_node_storage_in_gbs int
    The total local node storage available in GBs.
    max_memory_in_gbs int
    The total memory available in GBs.
    memory_size_in_gbs int
    The memory allocated in GBs.
    monthly_db_server_version str
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthly_storage_server_version str
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    next_maintenance_run_id str
    The OCID of the next maintenance run.
    shape str
    The model name of the cloud Exadata infrastructure resource.
    state str
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storage_count int
    The number of storage servers for the cloud Exadata infrastructure.
    storage_server_version str
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscription_id str
    The OCID of the subscription with which resource needs to be associated with.
    system_tags 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 str
    The date and time the cloud Exadata infrastructure resource was created.
    total_storage_size_in_gbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount Number
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount Number
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    availableStorageSizeInGbs Number
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    clusterPlacementGroupId String
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartmentId String
    The OCID of the compartment.
    computeCount Number
    The number of compute servers for the cloud Exadata infrastructure.
    cpuCount Number
    The total number of CPU cores allocated.
    customerContacts 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 Number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Number
    The local node storage allocated in GBs.
    dbServerVersion String
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    definedFileSystemConfigurations List<Property Map>
    Details of the file system configuration of the Exadata infrastructure.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascaleConfigs List<Property Map>
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeformTags 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 String
    The provider-assigned unique ID for this managed resource.
    isSchedulingPolicyAssociated Boolean
    If true, the infrastructure is using granular maintenance scheduling preference.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindows List<Property Map>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxCpuCount Number
    The total number of CPU cores available.
    maxDataStorageInTbs Number
    The total available DATA disk group size.
    maxDbNodeStorageInGbs Number
    The total local node storage available in GBs.
    maxMemoryInGbs Number
    The total memory available in GBs.
    memorySizeInGbs Number
    The memory allocated in GBs.
    monthlyDbServerVersion String
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthlyStorageServerVersion String
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    shape String
    The model name of the cloud Exadata infrastructure resource.
    state String
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storageCount Number
    The number of storage servers for the cloud Exadata infrastructure.
    storageServerVersion String
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscriptionId String
    The OCID of the subscription with which resource needs to be associated with.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageSizeInGbs Number
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).

    Look up Existing CloudExadataInfrastructureConfigureExascaleManagement Resource

    Get an existing CloudExadataInfrastructureConfigureExascaleManagement resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CloudExadataInfrastructureConfigureExascaleManagementState, opts?: CustomResourceOptions): CloudExadataInfrastructureConfigureExascaleManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            activated_storage_count: Optional[int] = None,
            additional_storage_count: Optional[int] = None,
            availability_domain: Optional[str] = None,
            available_storage_size_in_gbs: Optional[int] = None,
            cloud_exadata_infrastructure_id: Optional[str] = None,
            cluster_placement_group_id: Optional[str] = None,
            compartment_id: Optional[str] = None,
            compute_count: Optional[int] = None,
            cpu_count: Optional[int] = None,
            customer_contacts: Optional[Sequence[CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs]] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_server_version: Optional[str] = None,
            defined_file_system_configurations: Optional[Sequence[CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs]] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            exascale_configs: Optional[Sequence[CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs]] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            is_scheduling_policy_associated: Optional[bool] = None,
            last_maintenance_run_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            maintenance_windows: Optional[Sequence[CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs]] = None,
            max_cpu_count: Optional[int] = None,
            max_data_storage_in_tbs: Optional[float] = None,
            max_db_node_storage_in_gbs: Optional[int] = None,
            max_memory_in_gbs: Optional[int] = None,
            memory_size_in_gbs: Optional[int] = None,
            monthly_db_server_version: Optional[str] = None,
            monthly_storage_server_version: Optional[str] = None,
            next_maintenance_run_id: Optional[str] = None,
            shape: Optional[str] = None,
            state: Optional[str] = None,
            storage_count: Optional[int] = None,
            storage_server_version: Optional[str] = None,
            subscription_id: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            total_storage_in_gbs: Optional[int] = None,
            total_storage_size_in_gbs: Optional[int] = None) -> CloudExadataInfrastructureConfigureExascaleManagement
    func GetCloudExadataInfrastructureConfigureExascaleManagement(ctx *Context, name string, id IDInput, state *CloudExadataInfrastructureConfigureExascaleManagementState, opts ...ResourceOption) (*CloudExadataInfrastructureConfigureExascaleManagement, error)
    public static CloudExadataInfrastructureConfigureExascaleManagement Get(string name, Input<string> id, CloudExadataInfrastructureConfigureExascaleManagementState? state, CustomResourceOptions? opts = null)
    public static CloudExadataInfrastructureConfigureExascaleManagement get(String name, Output<String> id, CloudExadataInfrastructureConfigureExascaleManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:Database:CloudExadataInfrastructureConfigureExascaleManagement    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ActivatedStorageCount int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    AdditionalStorageCount int
    The requested number of additional storage servers for the Exadata infrastructure.
    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    AvailableStorageSizeInGbs int
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    CloudExadataInfrastructureId string
    The cloud Exadata infrastructure OCID.
    ClusterPlacementGroupId string
    The OCID of the cluster placement group of the Exadata Infrastructure.
    CompartmentId string
    The OCID of the compartment.
    ComputeCount int
    The number of compute servers for the cloud Exadata infrastructure.
    CpuCount int
    The total number of CPU cores allocated.
    CustomerContacts List<CloudExadataInfrastructureConfigureExascaleManagementCustomerContact>
    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 double
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServerVersion string
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    DefinedFileSystemConfigurations List<CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration>
    Details of the file system configuration of the Exadata infrastructure.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    ExascaleConfigs List<CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig>
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    FreeformTags 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"}
    IsSchedulingPolicyAssociated bool
    If true, the infrastructure is using granular maintenance scheduling preference.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindows List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxCpuCount int
    The total number of CPU cores available.
    MaxDataStorageInTbs double
    The total available DATA disk group size.
    MaxDbNodeStorageInGbs int
    The total local node storage available in GBs.
    MaxMemoryInGbs int
    The total memory available in GBs.
    MemorySizeInGbs int
    The memory allocated in GBs.
    MonthlyDbServerVersion string
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    Shape string
    The model name of the cloud Exadata infrastructure resource.
    State string
    The current lifecycle state of the cloud Exadata infrastructure resource.
    StorageCount int
    The number of storage servers for the cloud Exadata infrastructure.
    StorageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    SubscriptionId string
    The OCID of the subscription with which resource needs to be associated with.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    TotalStorageInGbs int

    Storage size needed for Exascale in GBs.

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

    TotalStorageSizeInGbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    ActivatedStorageCount int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    AdditionalStorageCount int
    The requested number of additional storage servers for the Exadata infrastructure.
    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    AvailableStorageSizeInGbs int
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    CloudExadataInfrastructureId string
    The cloud Exadata infrastructure OCID.
    ClusterPlacementGroupId string
    The OCID of the cluster placement group of the Exadata Infrastructure.
    CompartmentId string
    The OCID of the compartment.
    ComputeCount int
    The number of compute servers for the cloud Exadata infrastructure.
    CpuCount int
    The total number of CPU cores allocated.
    CustomerContacts []CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs
    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 float64
    Size, in terabytes, of the DATA disk group.
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServerVersion string
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    DefinedFileSystemConfigurations []CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs
    Details of the file system configuration of the Exadata infrastructure.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    ExascaleConfigs []CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    FreeformTags 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"}
    IsSchedulingPolicyAssociated bool
    If true, the infrastructure is using granular maintenance scheduling preference.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindows []CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxCpuCount int
    The total number of CPU cores available.
    MaxDataStorageInTbs float64
    The total available DATA disk group size.
    MaxDbNodeStorageInGbs int
    The total local node storage available in GBs.
    MaxMemoryInGbs int
    The total memory available in GBs.
    MemorySizeInGbs int
    The memory allocated in GBs.
    MonthlyDbServerVersion string
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    Shape string
    The model name of the cloud Exadata infrastructure resource.
    State string
    The current lifecycle state of the cloud Exadata infrastructure resource.
    StorageCount int
    The number of storage servers for the cloud Exadata infrastructure.
    StorageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    SubscriptionId string
    The OCID of the subscription with which resource needs to be associated with.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    TotalStorageInGbs int

    Storage size needed for Exascale in GBs.

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

    TotalStorageSizeInGbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount Integer
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount Integer
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    availableStorageSizeInGbs Integer
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    cloudExadataInfrastructureId String
    The cloud Exadata infrastructure OCID.
    clusterPlacementGroupId String
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartmentId String
    The OCID of the compartment.
    computeCount Integer
    The number of compute servers for the cloud Exadata infrastructure.
    cpuCount Integer
    The total number of CPU cores allocated.
    customerContacts List<CloudExadataInfrastructureConfigureExascaleManagementCustomerContact>
    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 Double
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Integer
    The local node storage allocated in GBs.
    dbServerVersion String
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    definedFileSystemConfigurations List<CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration>
    Details of the file system configuration of the Exadata infrastructure.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascaleConfigs List<CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig>
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeformTags 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"}
    isSchedulingPolicyAssociated Boolean
    If true, the infrastructure is using granular maintenance scheduling preference.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindows List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxCpuCount Integer
    The total number of CPU cores available.
    maxDataStorageInTbs Double
    The total available DATA disk group size.
    maxDbNodeStorageInGbs Integer
    The total local node storage available in GBs.
    maxMemoryInGbs Integer
    The total memory available in GBs.
    memorySizeInGbs Integer
    The memory allocated in GBs.
    monthlyDbServerVersion String
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthlyStorageServerVersion String
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    shape String
    The model name of the cloud Exadata infrastructure resource.
    state String
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storageCount Integer
    The number of storage servers for the cloud Exadata infrastructure.
    storageServerVersion String
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscriptionId String
    The OCID of the subscription with which resource needs to be associated with.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageInGbs Integer

    Storage size needed for Exascale in GBs.

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

    totalStorageSizeInGbs Integer
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount number
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount number
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    availableStorageSizeInGbs number
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    cloudExadataInfrastructureId string
    The cloud Exadata infrastructure OCID.
    clusterPlacementGroupId string
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartmentId string
    The OCID of the compartment.
    computeCount number
    The number of compute servers for the cloud Exadata infrastructure.
    cpuCount number
    The total number of CPU cores allocated.
    customerContacts CloudExadataInfrastructureConfigureExascaleManagementCustomerContact[]
    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 number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs number
    The local node storage allocated in GBs.
    dbServerVersion string
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    definedFileSystemConfigurations CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration[]
    Details of the file system configuration of the Exadata infrastructure.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascaleConfigs CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig[]
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeformTags {[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"}
    isSchedulingPolicyAssociated boolean
    If true, the infrastructure is using granular maintenance scheduling preference.
    lastMaintenanceRunId string
    The OCID of the last maintenance run.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    maintenanceWindows CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow[]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxCpuCount number
    The total number of CPU cores available.
    maxDataStorageInTbs number
    The total available DATA disk group size.
    maxDbNodeStorageInGbs number
    The total local node storage available in GBs.
    maxMemoryInGbs number
    The total memory available in GBs.
    memorySizeInGbs number
    The memory allocated in GBs.
    monthlyDbServerVersion string
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthlyStorageServerVersion string
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    nextMaintenanceRunId string
    The OCID of the next maintenance run.
    shape string
    The model name of the cloud Exadata infrastructure resource.
    state string
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storageCount number
    The number of storage servers for the cloud Exadata infrastructure.
    storageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscriptionId string
    The OCID of the subscription with which resource needs to be associated with.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageInGbs number

    Storage size needed for Exascale in GBs.

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

    totalStorageSizeInGbs number
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activated_storage_count int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additional_storage_count int
    The requested number of additional storage servers for the Exadata infrastructure.
    availability_domain str
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    available_storage_size_in_gbs int
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    cloud_exadata_infrastructure_id str
    The cloud Exadata infrastructure OCID.
    cluster_placement_group_id str
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartment_id str
    The OCID of the compartment.
    compute_count int
    The number of compute servers for the cloud Exadata infrastructure.
    cpu_count int
    The total number of CPU cores allocated.
    customer_contacts Sequence[CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs]
    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 float
    Size, in terabytes, of the DATA disk group.
    db_node_storage_size_in_gbs int
    The local node storage allocated in GBs.
    db_server_version str
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    defined_file_system_configurations Sequence[CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs]
    Details of the file system configuration of the Exadata infrastructure.
    defined_tags 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 str
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascale_configs Sequence[CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs]
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeform_tags 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"}
    is_scheduling_policy_associated bool
    If true, the infrastructure is using granular maintenance scheduling preference.
    last_maintenance_run_id str
    The OCID of the last maintenance run.
    lifecycle_details str
    Additional information about the current lifecycle state.
    maintenance_windows Sequence[CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    max_cpu_count int
    The total number of CPU cores available.
    max_data_storage_in_tbs float
    The total available DATA disk group size.
    max_db_node_storage_in_gbs int
    The total local node storage available in GBs.
    max_memory_in_gbs int
    The total memory available in GBs.
    memory_size_in_gbs int
    The memory allocated in GBs.
    monthly_db_server_version str
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthly_storage_server_version str
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    next_maintenance_run_id str
    The OCID of the next maintenance run.
    shape str
    The model name of the cloud Exadata infrastructure resource.
    state str
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storage_count int
    The number of storage servers for the cloud Exadata infrastructure.
    storage_server_version str
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscription_id str
    The OCID of the subscription with which resource needs to be associated with.
    system_tags 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 str
    The date and time the cloud Exadata infrastructure resource was created.
    total_storage_in_gbs int

    Storage size needed for Exascale in GBs.

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

    total_storage_size_in_gbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount Number
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount Number
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    availableStorageSizeInGbs Number
    The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    cloudExadataInfrastructureId String
    The cloud Exadata infrastructure OCID.
    clusterPlacementGroupId String
    The OCID of the cluster placement group of the Exadata Infrastructure.
    compartmentId String
    The OCID of the compartment.
    computeCount Number
    The number of compute servers for the cloud Exadata infrastructure.
    cpuCount Number
    The total number of CPU cores allocated.
    customerContacts 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 Number
    Size, in terabytes, of the DATA disk group.
    dbNodeStorageSizeInGbs Number
    The local node storage allocated in GBs.
    dbServerVersion String
    The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    definedFileSystemConfigurations List<Property Map>
    Details of the file system configuration of the Exadata infrastructure.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    exascaleConfigs List<Property Map>
    The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
    freeformTags 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"}
    isSchedulingPolicyAssociated Boolean
    If true, the infrastructure is using granular maintenance scheduling preference.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindows List<Property Map>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxCpuCount Number
    The total number of CPU cores available.
    maxDataStorageInTbs Number
    The total available DATA disk group size.
    maxDbNodeStorageInGbs Number
    The total local node storage available in GBs.
    maxMemoryInGbs Number
    The total memory available in GBs.
    memorySizeInGbs Number
    The memory allocated in GBs.
    monthlyDbServerVersion String
    The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
    monthlyStorageServerVersion String
    The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    shape String
    The model name of the cloud Exadata infrastructure resource.
    state String
    The current lifecycle state of the cloud Exadata infrastructure resource.
    storageCount Number
    The number of storage servers for the cloud Exadata infrastructure.
    storageServerVersion String
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    subscriptionId String
    The OCID of the subscription with which resource needs to be associated with.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageInGbs Number

    Storage size needed for Exascale in GBs.

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

    totalStorageSizeInGbs Number
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).

    Supporting Types

    CloudExadataInfrastructureConfigureExascaleManagementCustomerContact, CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs

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

    CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration, CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs

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

    CloudExadataInfrastructureConfigureExascaleManagementExascaleConfig, CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs

    AvailableStorageInGbs int
    Available storage size for Exascale in GBs.
    TotalStorageInGbs int

    Storage size needed for Exascale in GBs.

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

    AvailableStorageInGbs int
    Available storage size for Exascale in GBs.
    TotalStorageInGbs int

    Storage size needed for Exascale in GBs.

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

    availableStorageInGbs Integer
    Available storage size for Exascale in GBs.
    totalStorageInGbs Integer

    Storage size needed for Exascale in GBs.

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

    availableStorageInGbs number
    Available storage size for Exascale in GBs.
    totalStorageInGbs number

    Storage size needed for Exascale in GBs.

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

    available_storage_in_gbs int
    Available storage size for Exascale in GBs.
    total_storage_in_gbs int

    Storage size needed for Exascale in GBs.

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

    availableStorageInGbs Number
    Available storage size for Exascale in GBs.
    totalStorageInGbs Number

    Storage size needed for Exascale in GBs.

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

    CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindow, CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs

    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    HoursOfDays List<int>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth>
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    SkipRus List<bool>
    If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
    WeeksOfMonths List<int>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks []CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek
    Days during the week when maintenance should be performed.
    HoursOfDays []int
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months []CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    SkipRus []bool
    If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
    WeeksOfMonths []int
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Integer
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    skipRus List<Boolean>
    If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
    weeksOfMonths List<Integer>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek[]
    Days during the week when maintenance should be performed.
    hoursOfDays number[]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth[]
    Months during the year when maintenance should be performed.
    patchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference string
    The maintenance window scheduling preference.
    skipRus boolean[]
    If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
    weeksOfMonths number[]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    custom_action_timeout_in_mins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    days_of_weeks Sequence[CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek]
    Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    is_custom_action_timeout_enabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    If true, enables the monthly patching option.
    lead_time_in_weeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months Sequence[CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth]
    Months during the year when maintenance should be performed.
    patching_mode str
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference str
    The maintenance window scheduling preference.
    skip_rus Sequence[bool]
    If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
    weeks_of_months Sequence[int]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<Property Map>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<Property Map>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    skipRus List<Boolean>
    If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
    weeksOfMonths List<Number>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

    CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek, CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth, CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    Import

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

    $ pulumi import oci:Database/cloudExadataInfrastructureConfigureExascaleManagement:CloudExadataInfrastructureConfigureExascaleManagement test_cloud_exadata_infrastructure_configure_exascale_management "id"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi