1. Packages
  2. AWS
  3. API Docs
  4. odb
  5. CloudExadataInfrastructure
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

aws.odb.CloudExadataInfrastructure

Deploy with Pulumi
aws logo
AWS v7.8.0 published on Tuesday, Oct 7, 2025 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,
                                   database_server_type: Optional[str] = None,
                                   customer_contacts_to_send_to_ocis: Optional[Sequence[CloudExadataInfrastructureCustomerContactsToSendToOciArgs]] = 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.
    
    

    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,
            },
        },
        DatabaseServerType = "string",
        CustomerContactsToSendToOcis = new[]
        {
            new Aws.Odb.Inputs.CloudExadataInfrastructureCustomerContactsToSendToOciArgs
            {
                Email = "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),
    		},
    	},
    	DatabaseServerType: pulumi.String("string"),
    	CustomerContactsToSendToOcis: odb.CloudExadataInfrastructureCustomerContactsToSendToOciArray{
    		&odb.CloudExadataInfrastructureCustomerContactsToSendToOciArgs{
    			Email: 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"),
    	},
    })
    
    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())
        .databaseServerType("string")
        .customerContactsToSendToOcis(CloudExadataInfrastructureCustomerContactsToSendToOciArgs.builder()
            .email("string")
            .build())
        .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],
        },
        database_server_type="string",
        customer_contacts_to_send_to_ocis=[{
            "email": "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],
        },
        databaseServerType: "string",
        customerContactsToSendToOcis: [{
            email: "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
    DisplayName string
    Shape string
    AvailabilityZone string
    ComputeCount int
    The number of compute instances that the Exadata infrastructure is located
    CustomerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    DatabaseServerType string
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    MaintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    StorageCount int
    TThe number of storage servers that are activated for the Exadata infrastructure
    StorageServerType string
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    Tags Dictionary<string, string>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts CloudExadataInfrastructureTimeouts
    AvailabilityZoneId string
    DisplayName string
    Shape string
    AvailabilityZone string
    ComputeCount int
    The number of compute instances that the Exadata infrastructure is located
    CustomerContactsToSendToOcis []CloudExadataInfrastructureCustomerContactsToSendToOciArgs
    DatabaseServerType string
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    MaintenanceWindow CloudExadataInfrastructureMaintenanceWindowArgs
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    StorageCount int
    TThe number of storage servers that are activated for the Exadata infrastructure
    StorageServerType string
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    Tags map[string]string
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts CloudExadataInfrastructureTimeoutsArgs
    availabilityZoneId String
    displayName String
    shape String
    availabilityZone String
    computeCount Integer
    The number of compute instances that the Exadata infrastructure is located
    customerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    databaseServerType String
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storageCount Integer
    TThe number of storage servers that are activated for the Exadata infrastructure
    storageServerType String
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    tags Map<String,String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudExadataInfrastructureTimeouts
    availabilityZoneId string
    displayName string
    shape string
    availabilityZone string
    computeCount number
    The number of compute instances that the Exadata infrastructure is located
    customerContactsToSendToOcis CloudExadataInfrastructureCustomerContactsToSendToOci[]
    databaseServerType string
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storageCount number
    TThe number of storage servers that are activated for the Exadata infrastructure
    storageServerType string
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    tags {[key: string]: string}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudExadataInfrastructureTimeouts
    availability_zone_id str
    display_name str
    shape str
    availability_zone str
    compute_count int
    The number of compute instances that the Exadata infrastructure is located
    customer_contacts_to_send_to_ocis Sequence[CloudExadataInfrastructureCustomerContactsToSendToOciArgs]
    database_server_type str
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    maintenance_window CloudExadataInfrastructureMaintenanceWindowArgs
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storage_count int
    TThe number of storage servers that are activated for the Exadata infrastructure
    storage_server_type str
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    tags Mapping[str, str]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts CloudExadataInfrastructureTimeoutsArgs
    availabilityZoneId String
    displayName String
    shape String
    availabilityZone String
    computeCount Number
    The number of compute instances that the Exadata infrastructure is located
    customerContactsToSendToOcis List<Property Map>
    databaseServerType String
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    maintenanceWindow Property Map
    The scheduling details for the maintenance window. Patching and system updates take place during the maintenance window
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    storageCount Number
    TThe number of storage servers that are activated for the Exadata infrastructure
    storageServerType String
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    tags Map<String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags 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
    The number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    The number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the pipeline.
    AvailableStorageSizeInGbs int
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeModel string
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    The time when the Exadata infrastructure was created.
    DataStorageSizeInTbs double
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    The software version of the database servers (dom0) in the Exadata infrastructure.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastMaintenanceRunId string
    The Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    MaxCpuCount int
    The total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs double
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    MonthlyDbServerVersion string
    The monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    The OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    The HTTPS link to the Exadata infrastructure in OCI
    Ocid string
    The OCID of the Exadata infrastructure.
    PercentProgress double
    The amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    Status string
    The current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageServerVersion string
    The software version of the storage servers on the Exadata infrastructure.
    TagsAll Dictionary<string, string>
    TotalStorageSizeInGbs int
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    ActivatedStorageCount int
    The number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    The number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the pipeline.
    AvailableStorageSizeInGbs int
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeModel string
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    The time when the Exadata infrastructure was created.
    DataStorageSizeInTbs float64
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    The software version of the database servers (dom0) in the Exadata infrastructure.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastMaintenanceRunId string
    The Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    MaxCpuCount int
    The total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs float64
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    MonthlyDbServerVersion string
    The monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    The OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    The HTTPS link to the Exadata infrastructure in OCI
    Ocid string
    The OCID of the Exadata infrastructure.
    PercentProgress float64
    The amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    Status string
    The current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageServerVersion string
    The software version of the storage servers on the Exadata infrastructure.
    TagsAll map[string]string
    TotalStorageSizeInGbs int
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Integer
    The number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Integer
    The number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the pipeline.
    availableStorageSizeInGbs Integer
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeModel String
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Integer
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    The time when the Exadata infrastructure was created.
    dataStorageSizeInTbs Double
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    dbNodeStorageSizeInGbs Integer
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    The software version of the database servers (dom0) in the Exadata infrastructure.
    id String
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId String
    The Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maxCpuCount Integer
    The total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Double
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Integer
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Integer
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Integer
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthlyDbServerVersion String
    The monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    The OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    The HTTPS link to the Exadata infrastructure in OCI
    ocid String
    The OCID of the Exadata infrastructure.
    percentProgress Double
    The amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status String
    The current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageServerVersion String
    The software version of the storage servers on the Exadata infrastructure.
    tagsAll Map<String,String>
    totalStorageSizeInGbs Integer
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount number
    The number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount number
    The number of storage servers requested for the Exadata infrastructure.
    arn string
    Amazon Resource Name (ARN) of the pipeline.
    availableStorageSizeInGbs number
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeModel string
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount number
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt string
    The time when the Exadata infrastructure was created.
    dataStorageSizeInTbs number
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    dbNodeStorageSizeInGbs number
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion string
    The software version of the database servers (dom0) in the Exadata infrastructure.
    id string
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId string
    The Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maxCpuCount number
    The total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs number
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs number
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs number
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs number
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthlyDbServerVersion string
    The monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion string
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId string
    The OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName string
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl string
    The HTTPS link to the Exadata infrastructure in OCI
    ocid string
    The OCID of the Exadata infrastructure.
    percentProgress number
    The amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status string
    The current status of the Exadata infrastructure.
    statusReason string
    Additional information about the status of the Exadata infrastructure.
    storageServerVersion string
    The software version of the storage servers on the Exadata infrastructure.
    tagsAll {[key: string]: string}
    totalStorageSizeInGbs number
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activated_storage_count int
    The number of storage servers requested for the Exadata infrastructure.
    additional_storage_count int
    The number of storage servers requested for the Exadata infrastructure.
    arn str
    Amazon Resource Name (ARN) of the pipeline.
    available_storage_size_in_gbs int
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    compute_model str
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpu_count int
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    created_at str
    The time when the Exadata infrastructure was created.
    data_storage_size_in_tbs float
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    db_node_storage_size_in_gbs int
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    db_server_version str
    The 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
    The Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    max_cpu_count int
    The total number of CPU cores available on the Exadata infrastructure.
    max_data_storage_in_tbs float
    The 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
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    max_memory_in_gbs int
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memory_size_in_gbs int
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthly_db_server_version str
    The monthly software version of the database servers in the Exadata infrastructure.
    monthly_storage_server_version str
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    next_maintenance_run_id str
    The OCID of the next maintenance run for the Exadata infrastructure.
    oci_resource_anchor_name str
    The name of the OCI resource anchor for the Exadata infrastructure.
    oci_url str
    The HTTPS link to the Exadata infrastructure in OCI
    ocid str
    The OCID of the Exadata infrastructure.
    percent_progress float
    The amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status str
    The current status of the Exadata infrastructure.
    status_reason str
    Additional information about the status of the Exadata infrastructure.
    storage_server_version str
    The software version of the storage servers on the Exadata infrastructure.
    tags_all Mapping[str, str]
    total_storage_size_in_gbs int
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Number
    The number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Number
    The number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the pipeline.
    availableStorageSizeInGbs Number
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeModel String
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Number
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    The time when the Exadata infrastructure was created.
    dataStorageSizeInTbs Number
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    dbNodeStorageSizeInGbs Number
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    The software version of the database servers (dom0) in the Exadata infrastructure.
    id String
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId String
    The Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
    maxCpuCount Number
    The total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Number
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Number
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Number
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Number
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthlyDbServerVersion String
    The monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    The OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    The HTTPS link to the Exadata infrastructure in OCI
    ocid String
    The OCID of the Exadata infrastructure.
    percentProgress Number
    The amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
    status String
    The current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageServerVersion String
    The software version of the storage servers on the Exadata infrastructure.
    tagsAll Map<String>
    totalStorageSizeInGbs Number
    The 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}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ActivatedStorageCount int
    The number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    The number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the pipeline.
    AvailabilityZone string
    AvailabilityZoneId string
    AvailableStorageSizeInGbs int
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeCount int
    The number of compute instances that the Exadata infrastructure is located
    ComputeModel string
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    The time when the Exadata infrastructure was created.
    CustomerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    DataStorageSizeInTbs double
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DatabaseServerType string
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    DbNodeStorageSizeInGbs int
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    The software version of the database servers (dom0) in the Exadata infrastructure.
    DisplayName string
    LastMaintenanceRunId string
    The 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
    The total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs double
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    MonthlyDbServerVersion string
    The monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    The OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    The HTTPS link to the Exadata infrastructure in OCI
    Ocid string
    The OCID of the Exadata infrastructure.
    PercentProgress double
    The 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
    Status string
    The current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageCount int
    TThe number of storage servers that are activated for the Exadata infrastructure
    StorageServerType string
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    StorageServerVersion string
    The software version of the storage servers on the Exadata infrastructure.
    Tags Dictionary<string, string>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Timeouts CloudExadataInfrastructureTimeouts
    TotalStorageSizeInGbs int
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    ActivatedStorageCount int
    The number of storage servers requested for the Exadata infrastructure.
    AdditionalStorageCount int
    The number of storage servers requested for the Exadata infrastructure.
    Arn string
    Amazon Resource Name (ARN) of the pipeline.
    AvailabilityZone string
    AvailabilityZoneId string
    AvailableStorageSizeInGbs int
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    ComputeCount int
    The number of compute instances that the Exadata infrastructure is located
    ComputeModel string
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    CpuCount int
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    CreatedAt string
    The time when the Exadata infrastructure was created.
    CustomerContactsToSendToOcis []CloudExadataInfrastructureCustomerContactsToSendToOciArgs
    DataStorageSizeInTbs float64
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    DatabaseServerType string
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    DbNodeStorageSizeInGbs int
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    DbServerVersion string
    The software version of the database servers (dom0) in the Exadata infrastructure.
    DisplayName string
    LastMaintenanceRunId string
    The 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
    The total number of CPU cores available on the Exadata infrastructure.
    MaxDataStorageInTbs float64
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    MaxDbNodeStorageSizeInGbs int
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    MaxMemoryInGbs int
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    MemorySizeInGbs int
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    MonthlyDbServerVersion string
    The monthly software version of the database servers in the Exadata infrastructure.
    MonthlyStorageServerVersion string
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    NextMaintenanceRunId string
    The OCID of the next maintenance run for the Exadata infrastructure.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciUrl string
    The HTTPS link to the Exadata infrastructure in OCI
    Ocid string
    The OCID of the Exadata infrastructure.
    PercentProgress float64
    The 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
    Status string
    The current status of the Exadata infrastructure.
    StatusReason string
    Additional information about the status of the Exadata infrastructure.
    StorageCount int
    TThe number of storage servers that are activated for the Exadata infrastructure
    StorageServerType string
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    StorageServerVersion string
    The software version of the storage servers on the Exadata infrastructure.
    Tags map[string]string
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Timeouts CloudExadataInfrastructureTimeoutsArgs
    TotalStorageSizeInGbs int
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Integer
    The number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Integer
    The number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the pipeline.
    availabilityZone String
    availabilityZoneId String
    availableStorageSizeInGbs Integer
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeCount Integer
    The number of compute instances that the Exadata infrastructure is located
    computeModel String
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Integer
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    The time when the Exadata infrastructure was created.
    customerContactsToSendToOcis List<CloudExadataInfrastructureCustomerContactsToSendToOci>
    dataStorageSizeInTbs Double
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    databaseServerType String
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    dbNodeStorageSizeInGbs Integer
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    The software version of the database servers (dom0) in the Exadata infrastructure.
    displayName String
    lastMaintenanceRunId String
    The 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
    The total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Double
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Integer
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Integer
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Integer
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthlyDbServerVersion String
    The monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    The OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    The HTTPS link to the Exadata infrastructure in OCI
    ocid String
    The OCID of the Exadata infrastructure.
    percentProgress Double
    The 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
    status String
    The current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageCount Integer
    TThe number of storage servers that are activated for the Exadata infrastructure
    storageServerType String
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    storageServerVersion String
    The software version of the storage servers on the Exadata infrastructure.
    tags Map<String,String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    timeouts CloudExadataInfrastructureTimeouts
    totalStorageSizeInGbs Integer
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount number
    The number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount number
    The number of storage servers requested for the Exadata infrastructure.
    arn string
    Amazon Resource Name (ARN) of the pipeline.
    availabilityZone string
    availabilityZoneId string
    availableStorageSizeInGbs number
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeCount number
    The number of compute instances that the Exadata infrastructure is located
    computeModel string
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount number
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt string
    The time when the Exadata infrastructure was created.
    customerContactsToSendToOcis CloudExadataInfrastructureCustomerContactsToSendToOci[]
    dataStorageSizeInTbs number
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    databaseServerType string
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    dbNodeStorageSizeInGbs number
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion string
    The software version of the database servers (dom0) in the Exadata infrastructure.
    displayName string
    lastMaintenanceRunId string
    The 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
    The total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs number
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs number
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs number
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs number
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthlyDbServerVersion string
    The monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion string
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId string
    The OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName string
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl string
    The HTTPS link to the Exadata infrastructure in OCI
    ocid string
    The OCID of the Exadata infrastructure.
    percentProgress number
    The 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
    status string
    The current status of the Exadata infrastructure.
    statusReason string
    Additional information about the status of the Exadata infrastructure.
    storageCount number
    TThe number of storage servers that are activated for the Exadata infrastructure
    storageServerType string
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    storageServerVersion string
    The software version of the storage servers on the Exadata infrastructure.
    tags {[key: string]: string}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    timeouts CloudExadataInfrastructureTimeouts
    totalStorageSizeInGbs number
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activated_storage_count int
    The number of storage servers requested for the Exadata infrastructure.
    additional_storage_count int
    The number of storage servers requested for the Exadata infrastructure.
    arn str
    Amazon Resource Name (ARN) of the pipeline.
    availability_zone str
    availability_zone_id str
    available_storage_size_in_gbs int
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    compute_count int
    The number of compute instances that the Exadata infrastructure is located
    compute_model str
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpu_count int
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    created_at str
    The time when the Exadata infrastructure was created.
    customer_contacts_to_send_to_ocis Sequence[CloudExadataInfrastructureCustomerContactsToSendToOciArgs]
    data_storage_size_in_tbs float
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    database_server_type str
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    db_node_storage_size_in_gbs int
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    db_server_version str
    The software version of the database servers (dom0) in the Exadata infrastructure.
    display_name str
    last_maintenance_run_id str
    The 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
    The total number of CPU cores available on the Exadata infrastructure.
    max_data_storage_in_tbs float
    The 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
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    max_memory_in_gbs int
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memory_size_in_gbs int
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthly_db_server_version str
    The monthly software version of the database servers in the Exadata infrastructure.
    monthly_storage_server_version str
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    next_maintenance_run_id str
    The OCID of the next maintenance run for the Exadata infrastructure.
    oci_resource_anchor_name str
    The name of the OCI resource anchor for the Exadata infrastructure.
    oci_url str
    The HTTPS link to the Exadata infrastructure in OCI
    ocid str
    The OCID of the Exadata infrastructure.
    percent_progress float
    The 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
    status str
    The current status of the Exadata infrastructure.
    status_reason str
    Additional information about the status of the Exadata infrastructure.
    storage_count int
    TThe number of storage servers that are activated for the Exadata infrastructure
    storage_server_type str
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    storage_server_version str
    The software version of the storage servers on the Exadata infrastructure.
    tags Mapping[str, str]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags 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
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.
    activatedStorageCount Number
    The number of storage servers requested for the Exadata infrastructure.
    additionalStorageCount Number
    The number of storage servers requested for the Exadata infrastructure.
    arn String
    Amazon Resource Name (ARN) of the pipeline.
    availabilityZone String
    availabilityZoneId String
    availableStorageSizeInGbs Number
    The amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
    computeCount Number
    The number of compute instances that the Exadata infrastructure is located
    computeModel String
    The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
    cpuCount Number
    The total number of CPU cores that are allocated to the Exadata infrastructure.
    createdAt String
    The time when the Exadata infrastructure was created.
    customerContactsToSendToOcis List<Property Map>
    dataStorageSizeInTbs Number
    The size of the Exadata infrastructure's data disk group, in terabytes (TB).
    databaseServerType String
    The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    dbNodeStorageSizeInGbs Number
    The size of the Exadata infrastructure's local node storage, in gigabytes (GB).
    dbServerVersion String
    The software version of the database servers (dom0) in the Exadata infrastructure.
    displayName String
    lastMaintenanceRunId String
    The 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
    The total number of CPU cores available on the Exadata infrastructure.
    maxDataStorageInTbs Number
    The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
    maxDbNodeStorageSizeInGbs Number
    The total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
    maxMemoryInGbs Number
    The total amount of memory in gigabytes (GB) available on the Exadata infrastructure.
    memorySizeInGbs Number
    The amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure
    monthlyDbServerVersion String
    The monthly software version of the database servers in the Exadata infrastructure.
    monthlyStorageServerVersion String
    The monthly software version of the storage servers installed on the Exadata infrastructure.
    nextMaintenanceRunId String
    The OCID of the next maintenance run for the Exadata infrastructure.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociUrl String
    The HTTPS link to the Exadata infrastructure in OCI
    ocid String
    The OCID of the Exadata infrastructure.
    percentProgress Number
    The 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
    status String
    The current status of the Exadata infrastructure.
    statusReason String
    Additional information about the status of the Exadata infrastructure.
    storageCount Number
    TThe number of storage servers that are activated for the Exadata infrastructure
    storageServerType String
    The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation
    storageServerVersion String
    The software version of the storage servers on the Exadata infrastructure.
    tags Map<String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    timeouts Property Map
    totalStorageSizeInGbs Number
    The total amount of storage, in gigabytes (GB), on the Exadata infrastructure.

    Supporting Types

    CloudExadataInfrastructureCustomerContactsToSendToOci, CloudExadataInfrastructureCustomerContactsToSendToOciArgs

    Email string
    Email string
    email String
    email string
    email str
    email String

    CloudExadataInfrastructureMaintenanceWindow, CloudExadataInfrastructureMaintenanceWindowArgs

    CustomActionTimeoutInMins int
    The custom action timeout in minutes for the maintenance window.
    IsCustomActionTimeoutEnabled bool
    ndicates whether custom action timeout is enabled for the maintenance window.
    PatchingMode string
    The patching mode for the maintenance window.
    Preference string
    The preference for the maintenance window scheduling.
    DaysOfWeeks List<CloudExadataInfrastructureMaintenanceWindowDaysOfWeek>
    The days of the week when maintenance can be performed.
    HoursOfDays List<int>
    The hours of the day when maintenance can be performed.
    LeadTimeInWeeks int
    The lead time in weeks before the maintenance window.
    Months List<CloudExadataInfrastructureMaintenanceWindowMonth>
    The months when maintenance can be performed.
    WeeksOfMonths List<int>
    The weeks of the month when maintenance can be performed.
    CustomActionTimeoutInMins int
    The custom action timeout in minutes for the maintenance window.
    IsCustomActionTimeoutEnabled bool
    ndicates whether custom action timeout is enabled for the maintenance window.
    PatchingMode string
    The patching mode for the maintenance window.
    Preference string
    The preference for the maintenance window scheduling.
    DaysOfWeeks []CloudExadataInfrastructureMaintenanceWindowDaysOfWeek
    The days of the week when maintenance can be performed.
    HoursOfDays []int
    The hours of the day when maintenance can be performed.
    LeadTimeInWeeks int
    The lead time in weeks before the maintenance window.
    Months []CloudExadataInfrastructureMaintenanceWindowMonth
    The months when maintenance can be performed.
    WeeksOfMonths []int
    The weeks of the month when maintenance can be performed.
    customActionTimeoutInMins Integer
    The custom action timeout in minutes for the maintenance window.
    isCustomActionTimeoutEnabled Boolean
    ndicates whether custom action timeout is enabled for the maintenance window.
    patchingMode String
    The patching mode for the maintenance window.
    preference String
    The preference for the maintenance window scheduling.
    daysOfWeeks List<CloudExadataInfrastructureMaintenanceWindowDaysOfWeek>
    The days of the week when maintenance can be performed.
    hoursOfDays List<Integer>
    The hours of the day when maintenance can be performed.
    leadTimeInWeeks Integer
    The lead time in weeks before the maintenance window.
    months List<CloudExadataInfrastructureMaintenanceWindowMonth>
    The months when maintenance can be performed.
    weeksOfMonths List<Integer>
    The weeks of the month when maintenance can be performed.
    customActionTimeoutInMins number
    The custom action timeout in minutes for the maintenance window.
    isCustomActionTimeoutEnabled boolean
    ndicates whether custom action timeout is enabled for the maintenance window.
    patchingMode string
    The patching mode for the maintenance window.
    preference string
    The preference for the maintenance window scheduling.
    daysOfWeeks CloudExadataInfrastructureMaintenanceWindowDaysOfWeek[]
    The days of the week when maintenance can be performed.
    hoursOfDays number[]
    The hours of the day when maintenance can be performed.
    leadTimeInWeeks number
    The lead time in weeks before the maintenance window.
    months CloudExadataInfrastructureMaintenanceWindowMonth[]
    The months when maintenance can be performed.
    weeksOfMonths number[]
    The weeks of the month when maintenance can be performed.
    custom_action_timeout_in_mins int
    The custom action timeout in minutes for the maintenance window.
    is_custom_action_timeout_enabled bool
    ndicates whether custom action timeout is enabled for the maintenance window.
    patching_mode str
    The patching mode for the maintenance window.
    preference str
    The preference for the maintenance window scheduling.
    days_of_weeks Sequence[CloudExadataInfrastructureMaintenanceWindowDaysOfWeek]
    The days of the week when maintenance can be performed.
    hours_of_days Sequence[int]
    The hours of the day when maintenance can be performed.
    lead_time_in_weeks int
    The lead time in weeks before the maintenance window.
    months Sequence[CloudExadataInfrastructureMaintenanceWindowMonth]
    The months when maintenance can be performed.
    weeks_of_months Sequence[int]
    The weeks of the month when maintenance can be performed.
    customActionTimeoutInMins Number
    The custom action timeout in minutes for the maintenance window.
    isCustomActionTimeoutEnabled Boolean
    ndicates whether custom action timeout is enabled for the maintenance window.
    patchingMode String
    The patching mode for the maintenance window.
    preference String
    The preference for the maintenance window scheduling.
    daysOfWeeks List<Property Map>
    The days of the week when maintenance can be performed.
    hoursOfDays List<Number>
    The hours of the day when maintenance can be performed.
    leadTimeInWeeks Number
    The lead time in weeks before the maintenance window.
    months List<Property Map>
    The months when maintenance can be performed.
    weeksOfMonths List<Number>
    The weeks of the month when maintenance can be performed.

    CloudExadataInfrastructureMaintenanceWindowDaysOfWeek, CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs

    Name string
    Name string
    name String
    name string
    name str
    name String

    CloudExadataInfrastructureMaintenanceWindowMonth, CloudExadataInfrastructureMaintenanceWindowMonthArgs

    Name string
    Name string
    name String
    name string
    name str
    name String

    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 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 v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate