1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. odb
  6. CloudExadataInfrastructure
Viewing docs for AWS v7.42.0
published on Thursday, Aug 13, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.42.0
published on Thursday, Aug 13, 2026 by Pulumi

    Resource for managing exadata infrastructure resource in AWS for Oracle Database@AWS.

    Example Usage

    Create CloudExadataInfrastructure Resource

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

    Constructor syntax

    new CloudExadataInfrastructure(name: string, args: CloudExadataInfrastructureArgs, opts?: CustomResourceOptions);
    @overload
    def CloudExadataInfrastructure(resource_name: str,
                                   args: CloudExadataInfrastructureArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudExadataInfrastructure(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   display_name: Optional[str] = None,
                                   availability_zone_id: Optional[str] = None,
                                   shape: Optional[str] = None,
                                   maintenance_window: Optional[CloudExadataInfrastructureMaintenanceWindowArgs] = None,
                                   customer_contacts_to_send_to_ocis: Optional[Sequence[CloudExadataInfrastructureCustomerContactsToSendToOciArgs]] = None,
                                   database_server_type: Optional[str] = None,
                                   availability_zone: Optional[str] = None,
                                   region: Optional[str] = None,
                                   compute_count: Optional[int] = None,
                                   storage_count: Optional[int] = None,
                                   storage_server_type: Optional[str] = None,
                                   tags: Optional[Mapping[str, str]] = None,
                                   timeouts: Optional[CloudExadataInfrastructureTimeoutsArgs] = None)
    func NewCloudExadataInfrastructure(ctx *Context, name string, args CloudExadataInfrastructureArgs, opts ...ResourceOption) (*CloudExadataInfrastructure, error)
    public CloudExadataInfrastructure(string name, CloudExadataInfrastructureArgs args, CustomResourceOptions? opts = null)
    public CloudExadataInfrastructure(String name, CloudExadataInfrastructureArgs args)
    public CloudExadataInfrastructure(String name, CloudExadataInfrastructureArgs args, CustomResourceOptions options)
    
    type: aws:odb:CloudExadataInfrastructure
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_odb_cloud_exadata_infrastructure" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    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 CloudExadataInfrastructureArgs
    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 CloudExadataInfrastructureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    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 cloudExadataInfrastructureResource = new Aws.Odb.CloudExadataInfrastructure("cloudExadataInfrastructureResource", new()
    {
        DisplayName = "string",
        AvailabilityZoneId = "string",
        Shape = "string",
        MaintenanceWindow = new Aws.Odb.Inputs.CloudExadataInfrastructureMaintenanceWindowArgs
        {
            CustomActionTimeoutInMins = 0,
            IsCustomActionTimeoutEnabled = false,
            PatchingMode = "string",
            Preference = "string",
            DaysOfWeeks = new[]
            {
                new Aws.Odb.Inputs.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
                {
                    Name = "string",
                },
            },
            HoursOfDays = new[]
            {
                0,
            },
            LeadTimeInWeeks = 0,
            Months = new[]
            {
                new Aws.Odb.Inputs.CloudExadataInfrastructureMaintenanceWindowMonthArgs
                {
                    Name = "string",
                },
            },
            WeeksOfMonths = new[]
            {
                0,
            },
        },
        CustomerContactsToSendToOcis = new[]
        {
            new Aws.Odb.Inputs.CloudExadataInfrastructureCustomerContactsToSendToOciArgs
            {
                Email = "string",
            },
        },
        DatabaseServerType = "string",
        AvailabilityZone = "string",
        Region = "string",
        ComputeCount = 0,
        StorageCount = 0,
        StorageServerType = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Odb.Inputs.CloudExadataInfrastructureTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := odb.NewCloudExadataInfrastructure(ctx, "cloudExadataInfrastructureResource", &odb.CloudExadataInfrastructureArgs{
    	DisplayName:        pulumi.String("string"),
    	AvailabilityZoneId: pulumi.String("string"),
    	Shape:              pulumi.String("string"),
    	MaintenanceWindow: &odb.CloudExadataInfrastructureMaintenanceWindowArgs{
    		CustomActionTimeoutInMins:    pulumi.Int(0),
    		IsCustomActionTimeoutEnabled: pulumi.Bool(false),
    		PatchingMode:                 pulumi.String("string"),
    		Preference:                   pulumi.String("string"),
    		DaysOfWeeks: odb.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArray{
    			&odb.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		HoursOfDays: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		LeadTimeInWeeks: pulumi.Int(0),
    		Months: odb.CloudExadataInfrastructureMaintenanceWindowMonthArray{
    			&odb.CloudExadataInfrastructureMaintenanceWindowMonthArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		WeeksOfMonths: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    	},
    	CustomerContactsToSendToOcis: odb.CloudExadataInfrastructureCustomerContactsToSendToOciArray{
    		&odb.CloudExadataInfrastructureCustomerContactsToSendToOciArgs{
    			Email: pulumi.String("string"),
    		},
    	},
    	DatabaseServerType: pulumi.String("string"),
    	AvailabilityZone:   pulumi.String("string"),
    	Region:             pulumi.String("string"),
    	ComputeCount:       pulumi.Int(0),
    	StorageCount:       pulumi.Int(0),
    	StorageServerType:  pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &odb.CloudExadataInfrastructureTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    resource "aws_odb_cloud_exadata_infrastructure" "cloudExadataInfrastructureResource" {
      lifecycle {
        create_before_destroy = true
      }
      display_name         = "string"
      availability_zone_id = "string"
      shape                = "string"
      maintenance_window = {
        custom_action_timeout_in_mins    = 0
        is_custom_action_timeout_enabled = false
        patching_mode                    = "string"
        preference                       = "string"
        days_of_weeks = [{
          name = "string"
        }]
        hours_of_days      = [0]
        lead_time_in_weeks = 0
        months = [{
          name = "string"
        }]
        weeks_of_months = [0]
      }
      customer_contacts_to_send_to_ocis {
        email = "string"
      }
      database_server_type = "string"
      availability_zone    = "string"
      region               = "string"
      compute_count        = 0
      storage_count        = 0
      storage_server_type  = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
        update = "string"
      }
    }
    
    var cloudExadataInfrastructureResource = new CloudExadataInfrastructure("cloudExadataInfrastructureResource", CloudExadataInfrastructureArgs.builder()
        .displayName("string")
        .availabilityZoneId("string")
        .shape("string")
        .maintenanceWindow(CloudExadataInfrastructureMaintenanceWindowArgs.builder()
            .customActionTimeoutInMins(0)
            .isCustomActionTimeoutEnabled(false)
            .patchingMode("string")
            .preference("string")
            .daysOfWeeks(CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs.builder()
                .name("string")
                .build())
            .hoursOfDays(0)
            .leadTimeInWeeks(0)
            .months(CloudExadataInfrastructureMaintenanceWindowMonthArgs.builder()
                .name("string")
                .build())
            .weeksOfMonths(0)
            .build())
        .customerContactsToSendToOcis(CloudExadataInfrastructureCustomerContactsToSendToOciArgs.builder()
            .email("string")
            .build())
        .databaseServerType("string")
        .availabilityZone("string")
        .region("string")
        .computeCount(0)
        .storageCount(0)
        .storageServerType("string")
        .tags(Map.of("string", "string"))
        .timeouts(CloudExadataInfrastructureTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    cloud_exadata_infrastructure_resource = aws.odb.CloudExadataInfrastructure("cloudExadataInfrastructureResource",
        display_name="string",
        availability_zone_id="string",
        shape="string",
        maintenance_window={
            "custom_action_timeout_in_mins": 0,
            "is_custom_action_timeout_enabled": False,
            "patching_mode": "string",
            "preference": "string",
            "days_of_weeks": [{
                "name": "string",
            }],
            "hours_of_days": [0],
            "lead_time_in_weeks": 0,
            "months": [{
                "name": "string",
            }],
            "weeks_of_months": [0],
        },
        customer_contacts_to_send_to_ocis=[{
            "email": "string",
        }],
        database_server_type="string",
        availability_zone="string",
        region="string",
        compute_count=0,
        storage_count=0,
        storage_server_type="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const cloudExadataInfrastructureResource = new aws.odb.CloudExadataInfrastructure("cloudExadataInfrastructureResource", {
        displayName: "string",
        availabilityZoneId: "string",
        shape: "string",
        maintenanceWindow: {
            customActionTimeoutInMins: 0,
            isCustomActionTimeoutEnabled: false,
            patchingMode: "string",
            preference: "string",
            daysOfWeeks: [{
                name: "string",
            }],
            hoursOfDays: [0],
            leadTimeInWeeks: 0,
            months: [{
                name: "string",
            }],
            weeksOfMonths: [0],
        },
        customerContactsToSendToOcis: [{
            email: "string",
        }],
        databaseServerType: "string",
        availabilityZone: "string",
        region: "string",
        computeCount: 0,
        storageCount: 0,
        storageServerType: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:odb:CloudExadataInfrastructure
    properties:
        availabilityZone: string
        availabilityZoneId: string
        computeCount: 0
        customerContactsToSendToOcis:
            - email: string
        databaseServerType: string
        displayName: string
        maintenanceWindow:
            customActionTimeoutInMins: 0
            daysOfWeeks:
                - name: string
            hoursOfDays:
                - 0
            isCustomActionTimeoutEnabled: false
            leadTimeInWeeks: 0
            months:
                - name: string
            patchingMode: string
            preference: string
            weeksOfMonths:
                - 0
        region: string
        shape: string
        storageCount: 0
        storageServerType: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    CloudExadataInfrastructure 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 CloudExadataInfrastructure resource accepts the following input properties:

    AvailabilityZoneId string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    DisplayName string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    MaintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    Shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    AvailabilityZone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    ComputeCount int
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    CustomerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    DatabaseServerType string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    StorageCount int

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    StorageServerType string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    Tags Dictionary<string, string>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts CloudExadataInfrastructureTimeouts
    AvailabilityZoneId string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    DisplayName string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    MaintenanceWindow CloudExadataInfrastructureMaintenanceWindowArgs
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    Shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    AvailabilityZone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    ComputeCount int
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    CustomerContactsToSendToOcis []CloudExadataInfrastructureCustomerContactsToSendToOciArgs
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    DatabaseServerType string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    StorageCount int

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    StorageServerType string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    Tags map[string]string
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts CloudExadataInfrastructureTimeoutsArgs
    availability_zone_id string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    display_name string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    maintenance_window object
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    availability_zone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    compute_count number
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    customer_contacts_to_send_to_ocis list(object)
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    database_server_type string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storage_count number

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storage_server_type string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    tags map(string)
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts object
    availabilityZoneId String
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    displayName String
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    shape String
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    availabilityZone String
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    computeCount Integer
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    customerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    databaseServerType String
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storageCount Integer

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storageServerType String
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    tags Map<String,String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudExadataInfrastructureTimeouts
    availabilityZoneId string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    displayName string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    availabilityZone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    computeCount number
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    customerContactsToSendToOcis CloudExadataInfrastructureCustomerContactsToSendToOci[]
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    databaseServerType string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storageCount number

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storageServerType string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    tags {[key: string]: string}
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudExadataInfrastructureTimeouts
    availability_zone_id str
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    display_name str
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    maintenance_window CloudExadataInfrastructureMaintenanceWindowArgs
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    shape str
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    availability_zone str
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    compute_count int
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    customer_contacts_to_send_to_ocis Sequence[CloudExadataInfrastructureCustomerContactsToSendToOciArgs]
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    database_server_type str
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storage_count int

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storage_server_type str
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    tags Mapping[str, str]
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudExadataInfrastructureTimeoutsArgs
    availabilityZoneId String
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    displayName String
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    maintenanceWindow Property Map
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    shape String
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    availabilityZone String
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    computeCount Number
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    customerContactsToSendToOcis List<Property Map>
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    databaseServerType String
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storageCount Number

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storageServerType String
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    tags Map<String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

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

    ActivatedStorageCount int
    Number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    Number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    AvailableStorageSizeInGbs int
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeModel string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    Time when the Exadata infrastructure was created.
    DataStorageSizeInTbs double
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastMaintenanceRunId string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    MaxCpuCount int
    Total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs double
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    MonthlyDbServerVersion string
    Monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    HTTPS link to the Exadata infrastructure in OCI.
    Ocid string
    OCID of the Exadata infrastructure.
    PercentProgress double
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    Status string
    Current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageServerVersion string
    Software version of the storage servers on the Exadata infrastructure.
    TagsAll Dictionary<string, string>
    TotalStorageSizeInGbs int
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    ActivatedStorageCount int
    Number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    Number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    AvailableStorageSizeInGbs int
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeModel string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    Time when the Exadata infrastructure was created.
    DataStorageSizeInTbs float64
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastMaintenanceRunId string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    MaxCpuCount int
    Total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs float64
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    MonthlyDbServerVersion string
    Monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    HTTPS link to the Exadata infrastructure in OCI.
    Ocid string
    OCID of the Exadata infrastructure.
    PercentProgress float64
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    Status string
    Current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageServerVersion string
    Software version of the storage servers on the Exadata infrastructure.
    TagsAll map[string]string
    TotalStorageSizeInGbs int
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activated_storage_count number
    Number of storage servers requested for the Exadata infrastructure.
    additional_storage_count number
    Number of storage servers requested for the Exadata infrastructure.
    arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    available_storage_size_in_gbs number
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    compute_model string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpu_count number
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    created_at string
    Time when the Exadata infrastructure was created.
    data_storage_size_in_tbs number
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    db_node_storage_size_in_gbs number
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    db_server_version string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    id string
    The provider-assigned unique ID for this managed resource.
    last_maintenance_run_id string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    max_cpu_count number
    Total number of CPU cores available on the Exadata infrastructure.
    max_data_storage_in_tbs number
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    max_db_node_storage_size_in_gbs number
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    max_memory_in_gbs number
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memory_size_in_gbs number
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthly_db_server_version string
    Monthly software version of the database servers in the Exadata infrastructure.
    monthly_storage_server_version string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    next_maintenance_run_id string
    OCID of the next maintenance run for the Exadata infrastructure.
    oci_resource_anchor_name string
    Name of the OCI resource anchor for the Exadata infrastructure.
    oci_url string
    HTTPS link to the Exadata infrastructure in OCI.
    ocid string
    OCID of the Exadata infrastructure.
    percent_progress number
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status string
    Current status of the Exadata infrastructure.
    status_reason string
    Additional information about the status of the Exadata infrastructure.
    storage_server_version string
    Software version of the storage servers on the Exadata infrastructure.
    tags_all map(string)
    total_storage_size_in_gbs number
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Integer
    Number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Integer
    Number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availableStorageSizeInGbs Integer
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeModel String
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Integer
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    Time when the Exadata infrastructure was created.
    dataStorageSizeInTbs Double
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    dbNodeStorageSizeInGbs Integer
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    Software version of the database servers (dom0) in the Exadata infrastructure.
    id String
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId String
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maxCpuCount Integer
    Total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Double
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Integer
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Integer
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Integer
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthlyDbServerVersion String
    Monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    HTTPS link to the Exadata infrastructure in OCI.
    ocid String
    OCID of the Exadata infrastructure.
    percentProgress Double
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status String
    Current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageServerVersion String
    Software version of the storage servers on the Exadata infrastructure.
    tagsAll Map<String,String>
    totalStorageSizeInGbs Integer
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount number
    Number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount number
    Number of storage servers requested for the Exadata infrastructure.
    arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availableStorageSizeInGbs number
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeModel string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount number
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt string
    Time when the Exadata infrastructure was created.
    dataStorageSizeInTbs number
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    dbNodeStorageSizeInGbs number
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    id string
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maxCpuCount number
    Total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs number
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs number
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs number
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs number
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthlyDbServerVersion string
    Monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId string
    OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName string
    Name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl string
    HTTPS link to the Exadata infrastructure in OCI.
    ocid string
    OCID of the Exadata infrastructure.
    percentProgress number
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status string
    Current status of the Exadata infrastructure.
    statusReason string
    Additional information about the status of the Exadata infrastructure.
    storageServerVersion string
    Software version of the storage servers on the Exadata infrastructure.
    tagsAll {[key: string]: string}
    totalStorageSizeInGbs number
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activated_storage_count int
    Number of storage servers requested for the Exadata infrastructure.
    additional_storage_count int
    Number of storage servers requested for the Exadata infrastructure.
    arn str
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    available_storage_size_in_gbs int
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    compute_model str
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpu_count int
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    created_at str
    Time when the Exadata infrastructure was created.
    data_storage_size_in_tbs float
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    db_node_storage_size_in_gbs int
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    db_server_version str
    Software version of the database servers (dom0) in the Exadata infrastructure.
    id str
    The provider-assigned unique ID for this managed resource.
    last_maintenance_run_id str
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    max_cpu_count int
    Total number of CPU cores available on the Exadata infrastructure.
    max_data_storage_in_tbs float
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    max_db_node_storage_size_in_gbs int
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    max_memory_in_gbs int
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memory_size_in_gbs int
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthly_db_server_version str
    Monthly software version of the database servers in the Exadata infrastructure.
    monthly_storage_server_version str
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    next_maintenance_run_id str
    OCID of the next maintenance run for the Exadata infrastructure.
    oci_resource_anchor_name str
    Name of the OCI resource anchor for the Exadata infrastructure.
    oci_url str
    HTTPS link to the Exadata infrastructure in OCI.
    ocid str
    OCID of the Exadata infrastructure.
    percent_progress float
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status str
    Current status of the Exadata infrastructure.
    status_reason str
    Additional information about the status of the Exadata infrastructure.
    storage_server_version str
    Software version of the storage servers on the Exadata infrastructure.
    tags_all Mapping[str, str]
    total_storage_size_in_gbs int
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Number
    Number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Number
    Number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availableStorageSizeInGbs Number
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeModel String
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Number
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    Time when the Exadata infrastructure was created.
    dataStorageSizeInTbs Number
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    dbNodeStorageSizeInGbs Number
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    Software version of the database servers (dom0) in the Exadata infrastructure.
    id String
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId String
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maxCpuCount Number
    Total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Number
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Number
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Number
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Number
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthlyDbServerVersion String
    Monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    HTTPS link to the Exadata infrastructure in OCI.
    ocid String
    OCID of the Exadata infrastructure.
    percentProgress Number
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status String
    Current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageServerVersion String
    Software version of the storage servers on the Exadata infrastructure.
    tagsAll Map<String>
    totalStorageSizeInGbs Number
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.

    Look up Existing CloudExadataInfrastructure Resource

    Get an existing CloudExadataInfrastructure 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?: CloudExadataInfrastructureState, opts?: CustomResourceOptions): CloudExadataInfrastructure
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            activated_storage_count: Optional[int] = None,
            additional_storage_count: Optional[int] = None,
            arn: Optional[str] = None,
            availability_zone: Optional[str] = None,
            availability_zone_id: Optional[str] = None,
            available_storage_size_in_gbs: Optional[int] = None,
            compute_count: Optional[int] = None,
            compute_model: Optional[str] = None,
            cpu_count: Optional[int] = None,
            created_at: Optional[str] = None,
            customer_contacts_to_send_to_ocis: Optional[Sequence[CloudExadataInfrastructureCustomerContactsToSendToOciArgs]] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            database_server_type: Optional[str] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_server_version: Optional[str] = None,
            display_name: Optional[str] = None,
            last_maintenance_run_id: Optional[str] = None,
            maintenance_window: Optional[CloudExadataInfrastructureMaintenanceWindowArgs] = None,
            max_cpu_count: Optional[int] = None,
            max_data_storage_in_tbs: Optional[float] = None,
            max_db_node_storage_size_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,
            oci_resource_anchor_name: Optional[str] = None,
            oci_url: Optional[str] = None,
            ocid: Optional[str] = None,
            percent_progress: Optional[float] = None,
            region: Optional[str] = None,
            shape: Optional[str] = None,
            status: Optional[str] = None,
            status_reason: Optional[str] = None,
            storage_count: Optional[int] = None,
            storage_server_type: Optional[str] = None,
            storage_server_version: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[CloudExadataInfrastructureTimeoutsArgs] = None,
            total_storage_size_in_gbs: Optional[int] = None) -> CloudExadataInfrastructure
    func GetCloudExadataInfrastructure(ctx *Context, name string, id IDInput, state *CloudExadataInfrastructureState, opts ...ResourceOption) (*CloudExadataInfrastructure, error)
    public static CloudExadataInfrastructure Get(string name, Input<string> id, CloudExadataInfrastructureState? state, CustomResourceOptions? opts = null)
    public static CloudExadataInfrastructure get(String name, Output<String> id, CloudExadataInfrastructureState state, CustomResourceOptions options)
    resources:  _:    type: aws:odb:CloudExadataInfrastructure    get:      id: ${id}
    import {
      to = aws_odb_cloud_exadata_infrastructure.example
      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
    Number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    Number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    AvailabilityZone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    AvailabilityZoneId string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    AvailableStorageSizeInGbs int
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeCount int
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    ComputeModel string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    Time when the Exadata infrastructure was created.
    CustomerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    DataStorageSizeInTbs double
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DatabaseServerType string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    DbNodeStorageSizeInGbs int
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    DisplayName string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    LastMaintenanceRunId string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    MaintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    MaxCpuCount int
    Total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs double
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    MonthlyDbServerVersion string
    Monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    HTTPS link to the Exadata infrastructure in OCI.
    Ocid string
    OCID of the Exadata infrastructure.
    PercentProgress double
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    Status string
    Current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageCount int

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    StorageServerType string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    StorageServerVersion string
    Software version of the storage servers on the Exadata infrastructure.
    Tags Dictionary<string, string>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Timeouts CloudExadataInfrastructureTimeouts
    TotalStorageSizeInGbs int
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    ActivatedStorageCount int
    Number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    Number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    AvailabilityZone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    AvailabilityZoneId string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    AvailableStorageSizeInGbs int
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeCount int
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    ComputeModel string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    Time when the Exadata infrastructure was created.
    CustomerContactsToSendToOcis []CloudExadataInfrastructureCustomerContactsToSendToOciArgs
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    DataStorageSizeInTbs float64
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DatabaseServerType string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    DbNodeStorageSizeInGbs int
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    DisplayName string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    LastMaintenanceRunId string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    MaintenanceWindow CloudExadataInfrastructureMaintenanceWindowArgs
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    MaxCpuCount int
    Total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs float64
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    MonthlyDbServerVersion string
    Monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    HTTPS link to the Exadata infrastructure in OCI.
    Ocid string
    OCID of the Exadata infrastructure.
    PercentProgress float64
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    Status string
    Current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageCount int

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    StorageServerType string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    StorageServerVersion string
    Software version of the storage servers on the Exadata infrastructure.
    Tags map[string]string
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Timeouts CloudExadataInfrastructureTimeoutsArgs
    TotalStorageSizeInGbs int
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activated_storage_count number
    Number of storage servers requested for the Exadata infrastructure.
    additional_storage_count number
    Number of storage servers requested for the Exadata infrastructure.
    arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availability_zone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availability_zone_id string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    available_storage_size_in_gbs number
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    compute_count number
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    compute_model string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpu_count number
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    created_at string
    Time when the Exadata infrastructure was created.
    customer_contacts_to_send_to_ocis list(object)
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    data_storage_size_in_tbs number
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    database_server_type string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    db_node_storage_size_in_gbs number
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    db_server_version string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    display_name string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    last_maintenance_run_id string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maintenance_window object
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    max_cpu_count number
    Total number of CPU cores available on the Exadata infrastructure.
    max_data_storage_in_tbs number
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    max_db_node_storage_size_in_gbs number
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    max_memory_in_gbs number
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memory_size_in_gbs number
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthly_db_server_version string
    Monthly software version of the database servers in the Exadata infrastructure.
    monthly_storage_server_version string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    next_maintenance_run_id string
    OCID of the next maintenance run for the Exadata infrastructure.
    oci_resource_anchor_name string
    Name of the OCI resource anchor for the Exadata infrastructure.
    oci_url string
    HTTPS link to the Exadata infrastructure in OCI.
    ocid string
    OCID of the Exadata infrastructure.
    percent_progress number
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    status string
    Current status of the Exadata infrastructure.
    status_reason string
    Additional information about the status of the Exadata infrastructure.
    storage_count number

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storage_server_type string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    storage_server_version string
    Software version of the storage servers on the Exadata infrastructure.
    tags map(string)
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all map(string)
    timeouts object
    total_storage_size_in_gbs number
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Integer
    Number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Integer
    Number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availabilityZone String
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availabilityZoneId String
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availableStorageSizeInGbs Integer
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeCount Integer
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    computeModel String
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Integer
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    Time when the Exadata infrastructure was created.
    customerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    dataStorageSizeInTbs Double
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    databaseServerType String
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    dbNodeStorageSizeInGbs Integer
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    Software version of the database servers (dom0) in the Exadata infrastructure.
    displayName String
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    lastMaintenanceRunId String
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    maxCpuCount Integer
    Total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Double
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Integer
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Integer
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Integer
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthlyDbServerVersion String
    Monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    HTTPS link to the Exadata infrastructure in OCI.
    ocid String
    OCID of the Exadata infrastructure.
    percentProgress Double
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    shape String
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    status String
    Current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageCount Integer

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storageServerType String
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    storageServerVersion String
    Software version of the storage servers on the Exadata infrastructure.
    tags Map<String,String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    timeouts CloudExadataInfrastructureTimeouts
    totalStorageSizeInGbs Integer
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount number
    Number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount number
    Number of storage servers requested for the Exadata infrastructure.
    arn string
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availabilityZone string
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availabilityZoneId string
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availableStorageSizeInGbs number
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeCount number
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    computeModel string
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount number
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt string
    Time when the Exadata infrastructure was created.
    customerContactsToSendToOcis CloudExadataInfrastructureCustomerContactsToSendToOci[]
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    dataStorageSizeInTbs number
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    databaseServerType string
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    dbNodeStorageSizeInGbs number
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion string
    Software version of the database servers (dom0) in the Exadata infrastructure.
    displayName string
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    lastMaintenanceRunId string
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    maxCpuCount number
    Total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs number
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs number
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs number
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs number
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthlyDbServerVersion string
    Monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion string
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId string
    OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName string
    Name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl string
    HTTPS link to the Exadata infrastructure in OCI.
    ocid string
    OCID of the Exadata infrastructure.
    percentProgress number
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    shape string
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    status string
    Current status of the Exadata infrastructure.
    statusReason string
    Additional information about the status of the Exadata infrastructure.
    storageCount number

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storageServerType string
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    storageServerVersion string
    Software version of the storage servers on the Exadata infrastructure.
    tags {[key: string]: string}
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    timeouts CloudExadataInfrastructureTimeouts
    totalStorageSizeInGbs number
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activated_storage_count int
    Number of storage servers requested for the Exadata infrastructure.
    additional_storage_count int
    Number of storage servers requested for the Exadata infrastructure.
    arn str
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availability_zone str
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availability_zone_id str
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    available_storage_size_in_gbs int
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    compute_count int
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    compute_model str
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpu_count int
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    created_at str
    Time when the Exadata infrastructure was created.
    customer_contacts_to_send_to_ocis Sequence[CloudExadataInfrastructureCustomerContactsToSendToOciArgs]
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    data_storage_size_in_tbs float
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    database_server_type str
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    db_node_storage_size_in_gbs int
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    db_server_version str
    Software version of the database servers (dom0) in the Exadata infrastructure.
    display_name str
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    last_maintenance_run_id str
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maintenance_window CloudExadataInfrastructureMaintenanceWindowArgs
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    max_cpu_count int
    Total number of CPU cores available on the Exadata infrastructure.
    max_data_storage_in_tbs float
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    max_db_node_storage_size_in_gbs int
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    max_memory_in_gbs int
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memory_size_in_gbs int
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthly_db_server_version str
    Monthly software version of the database servers in the Exadata infrastructure.
    monthly_storage_server_version str
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    next_maintenance_run_id str
    OCID of the next maintenance run for the Exadata infrastructure.
    oci_resource_anchor_name str
    Name of the OCI resource anchor for the Exadata infrastructure.
    oci_url str
    HTTPS link to the Exadata infrastructure in OCI.
    ocid str
    OCID of the Exadata infrastructure.
    percent_progress float
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    shape str
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    status str
    Current status of the Exadata infrastructure.
    status_reason str
    Additional information about the status of the Exadata infrastructure.
    storage_count int

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storage_server_type str
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    storage_server_version str
    Software version of the storage servers on the Exadata infrastructure.
    tags Mapping[str, str]
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    timeouts CloudExadataInfrastructureTimeoutsArgs
    total_storage_size_in_gbs int
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Number
    Number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Number
    Number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the Exadata infrastructure.
    availabilityZone String
    Name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availabilityZoneId String
    AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    availableStorageSizeInGbs Number
    Amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeCount Number
    Number of compute instances that the Exadata infrastructure is located. Changing this will force terraform to create new resource.
    computeModel String
    OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Number
    Total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    Time when the Exadata infrastructure was created.
    customerContactsToSendToOcis List<Property Map>
    Email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource. See customerContactsToSendToOci Block below.
    dataStorageSizeInTbs Number
    Size of the Exadata infrastructure's data disk group, in terabytes (TB).
    databaseServerType String
    Database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    dbNodeStorageSizeInGbs Number
    Size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    Software version of the database servers (dom0) in the Exadata infrastructure.
    displayName String
    User-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource.
    lastMaintenanceRunId String
    Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maintenanceWindow Property Map
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    maxCpuCount Number
    Total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Number
    Total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Number
    Total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Number
    Total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Number
    Amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
    monthlyDbServerVersion String
    Monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    Monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    HTTPS link to the Exadata infrastructure in OCI.
    ocid String
    OCID of the Exadata infrastructure.
    percentProgress Number
    Amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    shape String
    Model name of the Exadata infrastructure. Changing this will force terraform to create new resource.
    status String
    Current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageCount Number

    Number of storage servers that are activated for the Exadata infrastructure. Changing this will force terraform to create new resource.

    The following arguments are optional:

    storageServerType String
    Storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation. This is a mandatory parameter for Exadata.X11M system shape. Changing this will force terraform to create new resource.
    storageServerVersion String
    Software version of the storage servers on the Exadata infrastructure.
    tags Map<String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    timeouts Property Map
    totalStorageSizeInGbs Number
    Total amount of storage, in gigabytes (GB), on the Exadata infrastructure.

    Supporting Types

    CloudExadataInfrastructureCustomerContactsToSendToOci, CloudExadataInfrastructureCustomerContactsToSendToOciArgs

    Email string
    Email address of the contact.
    Email string
    Email address of the contact.
    email string
    Email address of the contact.
    email String
    Email address of the contact.
    email string
    Email address of the contact.
    email str
    Email address of the contact.
    email String
    Email address of the contact.

    CloudExadataInfrastructureMaintenanceWindow, CloudExadataInfrastructureMaintenanceWindowArgs

    CustomActionTimeoutInMins int
    Custom action timeout in minutes for the maintenance window.
    IsCustomActionTimeoutEnabled bool
    Whether custom action timeout is enabled for the maintenance window.
    PatchingMode string
    Patching mode for the maintenance window.
    Preference string
    Preference for the maintenance window scheduling.
    DaysOfWeeks List<CloudExadataInfrastructureMaintenanceWindowDaysOfWeek>
    Days of the week when maintenance can be performed. See daysOfWeek Block below.
    HoursOfDays List<int>
    Hours of the day when maintenance can be performed.
    LeadTimeInWeeks int
    Lead time in weeks before the maintenance window.
    Months List<CloudExadataInfrastructureMaintenanceWindowMonth>
    Months when maintenance can be performed. See months Block below.
    WeeksOfMonths List<int>
    Weeks of the month when maintenance can be performed.
    CustomActionTimeoutInMins int
    Custom action timeout in minutes for the maintenance window.
    IsCustomActionTimeoutEnabled bool
    Whether custom action timeout is enabled for the maintenance window.
    PatchingMode string
    Patching mode for the maintenance window.
    Preference string
    Preference for the maintenance window scheduling.
    DaysOfWeeks []CloudExadataInfrastructureMaintenanceWindowDaysOfWeek
    Days of the week when maintenance can be performed. See daysOfWeek Block below.
    HoursOfDays []int
    Hours of the day when maintenance can be performed.
    LeadTimeInWeeks int
    Lead time in weeks before the maintenance window.
    Months []CloudExadataInfrastructureMaintenanceWindowMonth
    Months when maintenance can be performed. See months Block below.
    WeeksOfMonths []int
    Weeks of the month when maintenance can be performed.
    custom_action_timeout_in_mins number
    Custom action timeout in minutes for the maintenance window.
    is_custom_action_timeout_enabled bool
    Whether custom action timeout is enabled for the maintenance window.
    patching_mode string
    Patching mode for the maintenance window.
    preference string
    Preference for the maintenance window scheduling.
    days_of_weeks list(object)
    Days of the week when maintenance can be performed. See daysOfWeek Block below.
    hours_of_days list(number)
    Hours of the day when maintenance can be performed.
    lead_time_in_weeks number
    Lead time in weeks before the maintenance window.
    months list(object)
    Months when maintenance can be performed. See months Block below.
    weeks_of_months list(number)
    Weeks of the month when maintenance can be performed.
    customActionTimeoutInMins Integer
    Custom action timeout in minutes for the maintenance window.
    isCustomActionTimeoutEnabled Boolean
    Whether custom action timeout is enabled for the maintenance window.
    patchingMode String
    Patching mode for the maintenance window.
    preference String
    Preference for the maintenance window scheduling.
    daysOfWeeks List<CloudExadataInfrastructureMaintenanceWindowDaysOfWeek>
    Days of the week when maintenance can be performed. See daysOfWeek Block below.
    hoursOfDays List<Integer>
    Hours of the day when maintenance can be performed.
    leadTimeInWeeks Integer
    Lead time in weeks before the maintenance window.
    months List<CloudExadataInfrastructureMaintenanceWindowMonth>
    Months when maintenance can be performed. See months Block below.
    weeksOfMonths List<Integer>
    Weeks of the month when maintenance can be performed.
    customActionTimeoutInMins number
    Custom action timeout in minutes for the maintenance window.
    isCustomActionTimeoutEnabled boolean
    Whether custom action timeout is enabled for the maintenance window.
    patchingMode string
    Patching mode for the maintenance window.
    preference string
    Preference for the maintenance window scheduling.
    daysOfWeeks CloudExadataInfrastructureMaintenanceWindowDaysOfWeek[]
    Days of the week when maintenance can be performed. See daysOfWeek Block below.
    hoursOfDays number[]
    Hours of the day when maintenance can be performed.
    leadTimeInWeeks number
    Lead time in weeks before the maintenance window.
    months CloudExadataInfrastructureMaintenanceWindowMonth[]
    Months when maintenance can be performed. See months Block below.
    weeksOfMonths number[]
    Weeks of the month when maintenance can be performed.
    custom_action_timeout_in_mins int
    Custom action timeout in minutes for the maintenance window.
    is_custom_action_timeout_enabled bool
    Whether custom action timeout is enabled for the maintenance window.
    patching_mode str
    Patching mode for the maintenance window.
    preference str
    Preference for the maintenance window scheduling.
    days_of_weeks Sequence[CloudExadataInfrastructureMaintenanceWindowDaysOfWeek]
    Days of the week when maintenance can be performed. See daysOfWeek Block below.
    hours_of_days Sequence[int]
    Hours of the day when maintenance can be performed.
    lead_time_in_weeks int
    Lead time in weeks before the maintenance window.
    months Sequence[CloudExadataInfrastructureMaintenanceWindowMonth]
    Months when maintenance can be performed. See months Block below.
    weeks_of_months Sequence[int]
    Weeks of the month when maintenance can be performed.
    customActionTimeoutInMins Number
    Custom action timeout in minutes for the maintenance window.
    isCustomActionTimeoutEnabled Boolean
    Whether custom action timeout is enabled for the maintenance window.
    patchingMode String
    Patching mode for the maintenance window.
    preference String
    Preference for the maintenance window scheduling.
    daysOfWeeks List<Property Map>
    Days of the week when maintenance can be performed. See daysOfWeek Block below.
    hoursOfDays List<Number>
    Hours of the day when maintenance can be performed.
    leadTimeInWeeks Number
    Lead time in weeks before the maintenance window.
    months List<Property Map>
    Months when maintenance can be performed. See months Block below.
    weeksOfMonths List<Number>
    Weeks of the month when maintenance can be performed.

    CloudExadataInfrastructureMaintenanceWindowDaysOfWeek, CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs

    Name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    Name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name String
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name str
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name String
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

    CloudExadataInfrastructureMaintenanceWindowMonth, CloudExadataInfrastructureMaintenanceWindowMonthArgs

    Name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    Name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name String
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name str
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name String
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.

    CloudExadataInfrastructureTimeouts, CloudExadataInfrastructureTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import Exadata Infrastructure using the id. For example:

    $ pulumi import aws:odb/cloudExadataInfrastructure:CloudExadataInfrastructure example example
    

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

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo aws logo
    Viewing docs for AWS v7.42.0
    published on Thursday, Aug 13, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial