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

oci.Database.CloudExadataInfrastructure

Explore with Pulumi AI

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

Creates a cloud Exadata infrastructure resource. This resource is used to create either an Exadata Cloud Service instance or an Autonomous Database on dedicated Exadata infrastructure.

Example Usage

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

const testCloudExadataInfrastructure = new oci.database.CloudExadataInfrastructure("test_cloud_exadata_infrastructure", {
    availabilityDomain: cloudExadataInfrastructureAvailabilityDomain,
    compartmentId: compartmentId,
    displayName: cloudExadataInfrastructureDisplayName,
    shape: cloudExadataInfrastructureShape,
    clusterPlacementGroupId: cloudExadataInfrastructureClusterPlacementGroupId,
    computeCount: cloudExadataInfrastructureComputeCount,
    customerContacts: [{
        email: cloudExadataInfrastructureCustomerContactsEmail,
    }],
    databaseServerType: cloudExadataInfrastructureDatabaseServerType,
    definedTags: cloudExadataInfrastructureDefinedTags,
    freeformTags: {
        Department: "Finance",
    },
    maintenanceWindow: {
        customActionTimeoutInMins: cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins,
        daysOfWeeks: [{
            name: cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName,
        }],
        hoursOfDays: cloudExadataInfrastructureMaintenanceWindowHoursOfDay,
        isCustomActionTimeoutEnabled: cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled,
        isMonthlyPatchingEnabled: cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled,
        leadTimeInWeeks: cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks,
        months: [{
            name: cloudExadataInfrastructureMaintenanceWindowMonthsName,
        }],
        patchingMode: cloudExadataInfrastructureMaintenanceWindowPatchingMode,
        preference: cloudExadataInfrastructureMaintenanceWindowPreference,
        weeksOfMonths: cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth,
    },
    storageCount: cloudExadataInfrastructureStorageCount,
    storageServerType: cloudExadataInfrastructureStorageServerType,
    subscriptionId: tenantSubscriptionId,
});
Copy
import pulumi
import pulumi_oci as oci

test_cloud_exadata_infrastructure = oci.database.CloudExadataInfrastructure("test_cloud_exadata_infrastructure",
    availability_domain=cloud_exadata_infrastructure_availability_domain,
    compartment_id=compartment_id,
    display_name=cloud_exadata_infrastructure_display_name,
    shape=cloud_exadata_infrastructure_shape,
    cluster_placement_group_id=cloud_exadata_infrastructure_cluster_placement_group_id,
    compute_count=cloud_exadata_infrastructure_compute_count,
    customer_contacts=[{
        "email": cloud_exadata_infrastructure_customer_contacts_email,
    }],
    database_server_type=cloud_exadata_infrastructure_database_server_type,
    defined_tags=cloud_exadata_infrastructure_defined_tags,
    freeform_tags={
        "Department": "Finance",
    },
    maintenance_window={
        "custom_action_timeout_in_mins": cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins,
        "days_of_weeks": [{
            "name": cloud_exadata_infrastructure_maintenance_window_days_of_week_name,
        }],
        "hours_of_days": cloud_exadata_infrastructure_maintenance_window_hours_of_day,
        "is_custom_action_timeout_enabled": cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled,
        "is_monthly_patching_enabled": cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled,
        "lead_time_in_weeks": cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks,
        "months": [{
            "name": cloud_exadata_infrastructure_maintenance_window_months_name,
        }],
        "patching_mode": cloud_exadata_infrastructure_maintenance_window_patching_mode,
        "preference": cloud_exadata_infrastructure_maintenance_window_preference,
        "weeks_of_months": cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
    },
    storage_count=cloud_exadata_infrastructure_storage_count,
    storage_server_type=cloud_exadata_infrastructure_storage_server_type,
    subscription_id=tenant_subscription_id)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewCloudExadataInfrastructure(ctx, "test_cloud_exadata_infrastructure", &database.CloudExadataInfrastructureArgs{
			AvailabilityDomain:      pulumi.Any(cloudExadataInfrastructureAvailabilityDomain),
			CompartmentId:           pulumi.Any(compartmentId),
			DisplayName:             pulumi.Any(cloudExadataInfrastructureDisplayName),
			Shape:                   pulumi.Any(cloudExadataInfrastructureShape),
			ClusterPlacementGroupId: pulumi.Any(cloudExadataInfrastructureClusterPlacementGroupId),
			ComputeCount:            pulumi.Any(cloudExadataInfrastructureComputeCount),
			CustomerContacts: database.CloudExadataInfrastructureCustomerContactArray{
				&database.CloudExadataInfrastructureCustomerContactArgs{
					Email: pulumi.Any(cloudExadataInfrastructureCustomerContactsEmail),
				},
			},
			DatabaseServerType: pulumi.Any(cloudExadataInfrastructureDatabaseServerType),
			DefinedTags:        pulumi.Any(cloudExadataInfrastructureDefinedTags),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			MaintenanceWindow: &database.CloudExadataInfrastructureMaintenanceWindowArgs{
				CustomActionTimeoutInMins: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins),
				DaysOfWeeks: database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArray{
					&database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs{
						Name: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName),
					},
				},
				HoursOfDays:                  pulumi.Any(cloudExadataInfrastructureMaintenanceWindowHoursOfDay),
				IsCustomActionTimeoutEnabled: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled),
				IsMonthlyPatchingEnabled:     pulumi.Any(cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled),
				LeadTimeInWeeks:              pulumi.Any(cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks),
				Months: database.CloudExadataInfrastructureMaintenanceWindowMonthArray{
					&database.CloudExadataInfrastructureMaintenanceWindowMonthArgs{
						Name: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowMonthsName),
					},
				},
				PatchingMode:  pulumi.Any(cloudExadataInfrastructureMaintenanceWindowPatchingMode),
				Preference:    pulumi.Any(cloudExadataInfrastructureMaintenanceWindowPreference),
				WeeksOfMonths: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth),
			},
			StorageCount:      pulumi.Any(cloudExadataInfrastructureStorageCount),
			StorageServerType: pulumi.Any(cloudExadataInfrastructureStorageServerType),
			SubscriptionId:    pulumi.Any(tenantSubscriptionId),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testCloudExadataInfrastructure = new Oci.Database.CloudExadataInfrastructure("test_cloud_exadata_infrastructure", new()
    {
        AvailabilityDomain = cloudExadataInfrastructureAvailabilityDomain,
        CompartmentId = compartmentId,
        DisplayName = cloudExadataInfrastructureDisplayName,
        Shape = cloudExadataInfrastructureShape,
        ClusterPlacementGroupId = cloudExadataInfrastructureClusterPlacementGroupId,
        ComputeCount = cloudExadataInfrastructureComputeCount,
        CustomerContacts = new[]
        {
            new Oci.Database.Inputs.CloudExadataInfrastructureCustomerContactArgs
            {
                Email = cloudExadataInfrastructureCustomerContactsEmail,
            },
        },
        DatabaseServerType = cloudExadataInfrastructureDatabaseServerType,
        DefinedTags = cloudExadataInfrastructureDefinedTags,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        MaintenanceWindow = new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowArgs
        {
            CustomActionTimeoutInMins = cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins,
            DaysOfWeeks = new[]
            {
                new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
                {
                    Name = cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName,
                },
            },
            HoursOfDays = cloudExadataInfrastructureMaintenanceWindowHoursOfDay,
            IsCustomActionTimeoutEnabled = cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled,
            IsMonthlyPatchingEnabled = cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled,
            LeadTimeInWeeks = cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks,
            Months = new[]
            {
                new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowMonthArgs
                {
                    Name = cloudExadataInfrastructureMaintenanceWindowMonthsName,
                },
            },
            PatchingMode = cloudExadataInfrastructureMaintenanceWindowPatchingMode,
            Preference = cloudExadataInfrastructureMaintenanceWindowPreference,
            WeeksOfMonths = cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth,
        },
        StorageCount = cloudExadataInfrastructureStorageCount,
        StorageServerType = cloudExadataInfrastructureStorageServerType,
        SubscriptionId = tenantSubscriptionId,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.CloudExadataInfrastructure;
import com.pulumi.oci.Database.CloudExadataInfrastructureArgs;
import com.pulumi.oci.Database.inputs.CloudExadataInfrastructureCustomerContactArgs;
import com.pulumi.oci.Database.inputs.CloudExadataInfrastructureMaintenanceWindowArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testCloudExadataInfrastructure = new CloudExadataInfrastructure("testCloudExadataInfrastructure", CloudExadataInfrastructureArgs.builder()
            .availabilityDomain(cloudExadataInfrastructureAvailabilityDomain)
            .compartmentId(compartmentId)
            .displayName(cloudExadataInfrastructureDisplayName)
            .shape(cloudExadataInfrastructureShape)
            .clusterPlacementGroupId(cloudExadataInfrastructureClusterPlacementGroupId)
            .computeCount(cloudExadataInfrastructureComputeCount)
            .customerContacts(CloudExadataInfrastructureCustomerContactArgs.builder()
                .email(cloudExadataInfrastructureCustomerContactsEmail)
                .build())
            .databaseServerType(cloudExadataInfrastructureDatabaseServerType)
            .definedTags(cloudExadataInfrastructureDefinedTags)
            .freeformTags(Map.of("Department", "Finance"))
            .maintenanceWindow(CloudExadataInfrastructureMaintenanceWindowArgs.builder()
                .customActionTimeoutInMins(cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins)
                .daysOfWeeks(CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs.builder()
                    .name(cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName)
                    .build())
                .hoursOfDays(cloudExadataInfrastructureMaintenanceWindowHoursOfDay)
                .isCustomActionTimeoutEnabled(cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled)
                .isMonthlyPatchingEnabled(cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled)
                .leadTimeInWeeks(cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks)
                .months(CloudExadataInfrastructureMaintenanceWindowMonthArgs.builder()
                    .name(cloudExadataInfrastructureMaintenanceWindowMonthsName)
                    .build())
                .patchingMode(cloudExadataInfrastructureMaintenanceWindowPatchingMode)
                .preference(cloudExadataInfrastructureMaintenanceWindowPreference)
                .weeksOfMonths(cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth)
                .build())
            .storageCount(cloudExadataInfrastructureStorageCount)
            .storageServerType(cloudExadataInfrastructureStorageServerType)
            .subscriptionId(tenantSubscriptionId)
            .build());

    }
}
Copy
resources:
  testCloudExadataInfrastructure:
    type: oci:Database:CloudExadataInfrastructure
    name: test_cloud_exadata_infrastructure
    properties:
      availabilityDomain: ${cloudExadataInfrastructureAvailabilityDomain}
      compartmentId: ${compartmentId}
      displayName: ${cloudExadataInfrastructureDisplayName}
      shape: ${cloudExadataInfrastructureShape}
      clusterPlacementGroupId: ${cloudExadataInfrastructureClusterPlacementGroupId}
      computeCount: ${cloudExadataInfrastructureComputeCount}
      customerContacts:
        - email: ${cloudExadataInfrastructureCustomerContactsEmail}
      databaseServerType: ${cloudExadataInfrastructureDatabaseServerType}
      definedTags: ${cloudExadataInfrastructureDefinedTags}
      freeformTags:
        Department: Finance
      maintenanceWindow:
        customActionTimeoutInMins: ${cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins}
        daysOfWeeks:
          - name: ${cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName}
        hoursOfDays: ${cloudExadataInfrastructureMaintenanceWindowHoursOfDay}
        isCustomActionTimeoutEnabled: ${cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled}
        isMonthlyPatchingEnabled: ${cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled}
        leadTimeInWeeks: ${cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks}
        months:
          - name: ${cloudExadataInfrastructureMaintenanceWindowMonthsName}
        patchingMode: ${cloudExadataInfrastructureMaintenanceWindowPatchingMode}
        preference: ${cloudExadataInfrastructureMaintenanceWindowPreference}
        weeksOfMonths: ${cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth}
      storageCount: ${cloudExadataInfrastructureStorageCount}
      storageServerType: ${cloudExadataInfrastructureStorageServerType}
      subscriptionId: ${tenantSubscriptionId}
Copy

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,
                               availability_domain: Optional[str] = None,
                               shape: Optional[str] = None,
                               compartment_id: Optional[str] = None,
                               display_name: Optional[str] = None,
                               defined_tags: Optional[Mapping[str, str]] = None,
                               database_server_type: Optional[str] = None,
                               customer_contacts: Optional[Sequence[_database.CloudExadataInfrastructureCustomerContactArgs]] = None,
                               compute_count: Optional[int] = None,
                               freeform_tags: Optional[Mapping[str, str]] = None,
                               maintenance_window: Optional[_database.CloudExadataInfrastructureMaintenanceWindowArgs] = None,
                               cluster_placement_group_id: Optional[str] = None,
                               storage_count: Optional[int] = None,
                               storage_server_type: Optional[str] = None,
                               subscription_id: Optional[str] = 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: oci:Database:CloudExadataInfrastructure
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CloudExadataInfrastructureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. CloudExadataInfrastructureArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CloudExadataInfrastructureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 Oci.Database.CloudExadataInfrastructure("cloudExadataInfrastructureResource", new()
{
    AvailabilityDomain = "string",
    Shape = "string",
    CompartmentId = "string",
    DisplayName = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DatabaseServerType = "string",
    CustomerContacts = new[]
    {
        new Oci.Database.Inputs.CloudExadataInfrastructureCustomerContactArgs
        {
            Email = "string",
        },
    },
    ComputeCount = 0,
    FreeformTags = 
    {
        { "string", "string" },
    },
    MaintenanceWindow = new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowArgs
    {
        CustomActionTimeoutInMins = 0,
        DaysOfWeeks = new[]
        {
            new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
            {
                Name = "string",
            },
        },
        HoursOfDays = new[]
        {
            0,
        },
        IsCustomActionTimeoutEnabled = false,
        IsMonthlyPatchingEnabled = false,
        LeadTimeInWeeks = 0,
        Months = new[]
        {
            new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowMonthArgs
            {
                Name = "string",
            },
        },
        PatchingMode = "string",
        Preference = "string",
        SkipRus = new[]
        {
            false,
        },
        WeeksOfMonths = new[]
        {
            0,
        },
    },
    ClusterPlacementGroupId = "string",
    StorageCount = 0,
    StorageServerType = "string",
    SubscriptionId = "string",
});
Copy
example, err := database.NewCloudExadataInfrastructure(ctx, "cloudExadataInfrastructureResource", &database.CloudExadataInfrastructureArgs{
	AvailabilityDomain: pulumi.String("string"),
	Shape:              pulumi.String("string"),
	CompartmentId:      pulumi.String("string"),
	DisplayName:        pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DatabaseServerType: pulumi.String("string"),
	CustomerContacts: database.CloudExadataInfrastructureCustomerContactArray{
		&database.CloudExadataInfrastructureCustomerContactArgs{
			Email: pulumi.String("string"),
		},
	},
	ComputeCount: pulumi.Int(0),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	MaintenanceWindow: &database.CloudExadataInfrastructureMaintenanceWindowArgs{
		CustomActionTimeoutInMins: pulumi.Int(0),
		DaysOfWeeks: database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArray{
			&database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs{
				Name: pulumi.String("string"),
			},
		},
		HoursOfDays: pulumi.IntArray{
			pulumi.Int(0),
		},
		IsCustomActionTimeoutEnabled: pulumi.Bool(false),
		IsMonthlyPatchingEnabled:     pulumi.Bool(false),
		LeadTimeInWeeks:              pulumi.Int(0),
		Months: database.CloudExadataInfrastructureMaintenanceWindowMonthArray{
			&database.CloudExadataInfrastructureMaintenanceWindowMonthArgs{
				Name: pulumi.String("string"),
			},
		},
		PatchingMode: pulumi.String("string"),
		Preference:   pulumi.String("string"),
		SkipRus: pulumi.BoolArray{
			pulumi.Bool(false),
		},
		WeeksOfMonths: pulumi.IntArray{
			pulumi.Int(0),
		},
	},
	ClusterPlacementGroupId: pulumi.String("string"),
	StorageCount:            pulumi.Int(0),
	StorageServerType:       pulumi.String("string"),
	SubscriptionId:          pulumi.String("string"),
})
Copy
var cloudExadataInfrastructureResource = new CloudExadataInfrastructure("cloudExadataInfrastructureResource", CloudExadataInfrastructureArgs.builder()
    .availabilityDomain("string")
    .shape("string")
    .compartmentId("string")
    .displayName("string")
    .definedTags(Map.of("string", "string"))
    .databaseServerType("string")
    .customerContacts(CloudExadataInfrastructureCustomerContactArgs.builder()
        .email("string")
        .build())
    .computeCount(0)
    .freeformTags(Map.of("string", "string"))
    .maintenanceWindow(CloudExadataInfrastructureMaintenanceWindowArgs.builder()
        .customActionTimeoutInMins(0)
        .daysOfWeeks(CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs.builder()
            .name("string")
            .build())
        .hoursOfDays(0)
        .isCustomActionTimeoutEnabled(false)
        .isMonthlyPatchingEnabled(false)
        .leadTimeInWeeks(0)
        .months(CloudExadataInfrastructureMaintenanceWindowMonthArgs.builder()
            .name("string")
            .build())
        .patchingMode("string")
        .preference("string")
        .skipRus(false)
        .weeksOfMonths(0)
        .build())
    .clusterPlacementGroupId("string")
    .storageCount(0)
    .storageServerType("string")
    .subscriptionId("string")
    .build());
Copy
cloud_exadata_infrastructure_resource = oci.database.CloudExadataInfrastructure("cloudExadataInfrastructureResource",
    availability_domain="string",
    shape="string",
    compartment_id="string",
    display_name="string",
    defined_tags={
        "string": "string",
    },
    database_server_type="string",
    customer_contacts=[{
        "email": "string",
    }],
    compute_count=0,
    freeform_tags={
        "string": "string",
    },
    maintenance_window={
        "custom_action_timeout_in_mins": 0,
        "days_of_weeks": [{
            "name": "string",
        }],
        "hours_of_days": [0],
        "is_custom_action_timeout_enabled": False,
        "is_monthly_patching_enabled": False,
        "lead_time_in_weeks": 0,
        "months": [{
            "name": "string",
        }],
        "patching_mode": "string",
        "preference": "string",
        "skip_rus": [False],
        "weeks_of_months": [0],
    },
    cluster_placement_group_id="string",
    storage_count=0,
    storage_server_type="string",
    subscription_id="string")
Copy
const cloudExadataInfrastructureResource = new oci.database.CloudExadataInfrastructure("cloudExadataInfrastructureResource", {
    availabilityDomain: "string",
    shape: "string",
    compartmentId: "string",
    displayName: "string",
    definedTags: {
        string: "string",
    },
    databaseServerType: "string",
    customerContacts: [{
        email: "string",
    }],
    computeCount: 0,
    freeformTags: {
        string: "string",
    },
    maintenanceWindow: {
        customActionTimeoutInMins: 0,
        daysOfWeeks: [{
            name: "string",
        }],
        hoursOfDays: [0],
        isCustomActionTimeoutEnabled: false,
        isMonthlyPatchingEnabled: false,
        leadTimeInWeeks: 0,
        months: [{
            name: "string",
        }],
        patchingMode: "string",
        preference: "string",
        skipRus: [false],
        weeksOfMonths: [0],
    },
    clusterPlacementGroupId: "string",
    storageCount: 0,
    storageServerType: "string",
    subscriptionId: "string",
});
Copy
type: oci:Database:CloudExadataInfrastructure
properties:
    availabilityDomain: string
    clusterPlacementGroupId: string
    compartmentId: string
    computeCount: 0
    customerContacts:
        - email: string
    databaseServerType: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    maintenanceWindow:
        customActionTimeoutInMins: 0
        daysOfWeeks:
            - name: string
        hoursOfDays:
            - 0
        isCustomActionTimeoutEnabled: false
        isMonthlyPatchingEnabled: false
        leadTimeInWeeks: 0
        months:
            - name: string
        patchingMode: string
        preference: string
        skipRus:
            - false
        weeksOfMonths:
            - 0
    shape: string
    storageCount: 0
    storageServerType: string
    subscriptionId: string
Copy

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:

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain where the cloud Exadata infrastructure is located.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DisplayName This property is required. string
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
Shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the cloud Exadata infrastructure resource.
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
ComputeCount int
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
CustomerContacts List<CloudExadataInfrastructureCustomerContact>
(Updatable) Customer contacts.
DatabaseServerType Changes to this property will trigger replacement. string
The database server type of the Exadata infrastructure.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
MaintenanceWindow CloudExadataInfrastructureMaintenanceWindow
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
StorageCount int
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
StorageServerType Changes to this property will trigger replacement. string
The storage server type of the Exadata infrastructure.
SubscriptionId Changes to this property will trigger replacement. string

The OCID of the subscription with which resource needs to be associated with.

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

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain where the cloud Exadata infrastructure is located.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DisplayName This property is required. string
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
Shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the cloud Exadata infrastructure resource.
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
ComputeCount int
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
CustomerContacts []CloudExadataInfrastructureCustomerContactArgs
(Updatable) Customer contacts.
DatabaseServerType Changes to this property will trigger replacement. string
The database server type of the Exadata infrastructure.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
MaintenanceWindow CloudExadataInfrastructureMaintenanceWindowArgs
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
StorageCount int
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
StorageServerType Changes to this property will trigger replacement. string
The storage server type of the Exadata infrastructure.
SubscriptionId Changes to this property will trigger replacement. string

The OCID of the subscription with which resource needs to be associated with.

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

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The availability domain where the cloud Exadata infrastructure is located.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
displayName This property is required. String
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
shape
This property is required.
Changes to this property will trigger replacement.
String
The shape of the cloud Exadata infrastructure resource.
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
computeCount Integer
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
customerContacts List<CloudExadataInfrastructureCustomerContact>
(Updatable) Customer contacts.
databaseServerType Changes to this property will trigger replacement. String
The database server type of the Exadata infrastructure.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
storageCount Integer
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storageServerType Changes to this property will trigger replacement. String
The storage server type of the Exadata infrastructure.
subscriptionId Changes to this property will trigger replacement. String

The OCID of the subscription with which resource needs to be associated with.

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

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain where the cloud Exadata infrastructure is located.
compartmentId This property is required. string
(Updatable) The OCID of the compartment.
displayName This property is required. string
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the cloud Exadata infrastructure resource.
clusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
computeCount number
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
customerContacts CloudExadataInfrastructureCustomerContact[]
(Updatable) Customer contacts.
databaseServerType Changes to this property will trigger replacement. string
The database server type of the Exadata infrastructure.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
storageCount number
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storageServerType Changes to this property will trigger replacement. string
The storage server type of the Exadata infrastructure.
subscriptionId Changes to this property will trigger replacement. string

The OCID of the subscription with which resource needs to be associated with.

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

availability_domain
This property is required.
Changes to this property will trigger replacement.
str
The availability domain where the cloud Exadata infrastructure is located.
compartment_id This property is required. str
(Updatable) The OCID of the compartment.
display_name This property is required. str
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
shape
This property is required.
Changes to this property will trigger replacement.
str
The shape of the cloud Exadata infrastructure resource.
cluster_placement_group_id Changes to this property will trigger replacement. str
The OCID of the cluster placement group of the Exadata Infrastructure.
compute_count int
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
customer_contacts Sequence[database.CloudExadataInfrastructureCustomerContactArgs]
(Updatable) Customer contacts.
database_server_type Changes to this property will trigger replacement. str
The database server type of the Exadata infrastructure.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
maintenance_window database.CloudExadataInfrastructureMaintenanceWindowArgs
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
storage_count int
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storage_server_type Changes to this property will trigger replacement. str
The storage server type of the Exadata infrastructure.
subscription_id Changes to this property will trigger replacement. str

The OCID of the subscription with which resource needs to be associated with.

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

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The availability domain where the cloud Exadata infrastructure is located.
compartmentId This property is required. String
(Updatable) The OCID of the compartment.
displayName This property is required. String
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
shape
This property is required.
Changes to this property will trigger replacement.
String
The shape of the cloud Exadata infrastructure resource.
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
computeCount Number
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
customerContacts List<Property Map>
(Updatable) Customer contacts.
databaseServerType Changes to this property will trigger replacement. String
The database server type of the Exadata infrastructure.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
maintenanceWindow Property Map
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
storageCount Number
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storageServerType Changes to this property will trigger replacement. String
The storage server type of the Exadata infrastructure.
subscriptionId Changes to this property will trigger replacement. String

The OCID of the subscription with which resource needs to be associated with.

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

Outputs

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

ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AvailableStorageSizeInGbs int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ComputeModel string
The compute model of the Exadata infrastructure.
CpuCount int
The total number of CPU cores allocated.
DataStorageSizeInTbs double
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
DefinedFileSystemConfigurations List<CloudExadataInfrastructureDefinedFileSystemConfiguration>
Details of the file system configuration of the Exadata infrastructure.
Id string
The provider-assigned unique ID for this managed resource.
IsSchedulingPolicyAssociated bool
If true, the infrastructure is using granular maintenance scheduling preference.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LifecycleDetails string
Additional information about the current lifecycle state.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs double
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
MonthlyStorageServerVersion string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
NextMaintenanceRunId string
The OCID of the next maintenance run.
State string
The current lifecycle state of the cloud Exadata infrastructure resource.
StorageServerVersion string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time the cloud Exadata infrastructure resource was created.
TotalStorageSizeInGbs int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AvailableStorageSizeInGbs int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ComputeModel string
The compute model of the Exadata infrastructure.
CpuCount int
The total number of CPU cores allocated.
DataStorageSizeInTbs float64
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
DefinedFileSystemConfigurations []CloudExadataInfrastructureDefinedFileSystemConfiguration
Details of the file system configuration of the Exadata infrastructure.
Id string
The provider-assigned unique ID for this managed resource.
IsSchedulingPolicyAssociated bool
If true, the infrastructure is using granular maintenance scheduling preference.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LifecycleDetails string
Additional information about the current lifecycle state.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs float64
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
MonthlyStorageServerVersion string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
NextMaintenanceRunId string
The OCID of the next maintenance run.
State string
The current lifecycle state of the cloud Exadata infrastructure resource.
StorageServerVersion string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time the cloud Exadata infrastructure resource was created.
TotalStorageSizeInGbs int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount Integer
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount Integer
The requested number of additional storage servers for the Exadata infrastructure.
availableStorageSizeInGbs Integer
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
computeModel String
The compute model of the Exadata infrastructure.
cpuCount Integer
The total number of CPU cores allocated.
dataStorageSizeInTbs Double
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Integer
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations List<CloudExadataInfrastructureDefinedFileSystemConfiguration>
Details of the file system configuration of the Exadata infrastructure.
id String
The provider-assigned unique ID for this managed resource.
isSchedulingPolicyAssociated Boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId String
The OCID of the last maintenance run.
lifecycleDetails String
Additional information about the current lifecycle state.
maxCpuCount Integer
The total number of CPU cores available.
maxDataStorageInTbs Double
The total available DATA disk group size.
maxDbNodeStorageInGbs Integer
The total local node storage available in GBs.
maxMemoryInGbs Integer
The total memory available in GBs.
memorySizeInGbs Integer
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion String
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId String
The OCID of the next maintenance run.
state String
The current lifecycle state of the cloud Exadata infrastructure resource.
storageServerVersion String
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs Integer
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount number
The requested number of additional storage servers for the Exadata infrastructure.
availableStorageSizeInGbs number
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
computeModel string
The compute model of the Exadata infrastructure.
cpuCount number
The total number of CPU cores allocated.
dataStorageSizeInTbs number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs number
The local node storage allocated in GBs.
dbServerVersion string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations CloudExadataInfrastructureDefinedFileSystemConfiguration[]
Details of the file system configuration of the Exadata infrastructure.
id string
The provider-assigned unique ID for this managed resource.
isSchedulingPolicyAssociated boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId string
The OCID of the last maintenance run.
lifecycleDetails string
Additional information about the current lifecycle state.
maxCpuCount number
The total number of CPU cores available.
maxDataStorageInTbs number
The total available DATA disk group size.
maxDbNodeStorageInGbs number
The total local node storage available in GBs.
maxMemoryInGbs number
The total memory available in GBs.
memorySizeInGbs number
The memory allocated in GBs.
monthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId string
The OCID of the next maintenance run.
state string
The current lifecycle state of the cloud Exadata infrastructure resource.
storageServerVersion string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated string
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs number
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activated_storage_count int
The requested number of additional storage servers activated for the Exadata infrastructure.
additional_storage_count int
The requested number of additional storage servers for the Exadata infrastructure.
available_storage_size_in_gbs int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
compute_model str
The compute model of the Exadata infrastructure.
cpu_count int
The total number of CPU cores allocated.
data_storage_size_in_tbs float
Size, in terabytes, of the DATA disk group.
db_node_storage_size_in_gbs int
The local node storage allocated in GBs.
db_server_version str
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
defined_file_system_configurations Sequence[database.CloudExadataInfrastructureDefinedFileSystemConfiguration]
Details of the file system configuration of the Exadata infrastructure.
id str
The provider-assigned unique ID for this managed resource.
is_scheduling_policy_associated bool
If true, the infrastructure is using granular maintenance scheduling preference.
last_maintenance_run_id str
The OCID of the last maintenance run.
lifecycle_details str
Additional information about the current lifecycle state.
max_cpu_count int
The total number of CPU cores available.
max_data_storage_in_tbs float
The total available DATA disk group size.
max_db_node_storage_in_gbs int
The total local node storage available in GBs.
max_memory_in_gbs int
The total memory available in GBs.
memory_size_in_gbs int
The memory allocated in GBs.
monthly_db_server_version str
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthly_storage_server_version str
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
next_maintenance_run_id str
The OCID of the next maintenance run.
state str
The current lifecycle state of the cloud Exadata infrastructure resource.
storage_server_version str
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
time_created str
The date and time the cloud Exadata infrastructure resource was created.
total_storage_size_in_gbs int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount Number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount Number
The requested number of additional storage servers for the Exadata infrastructure.
availableStorageSizeInGbs Number
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
computeModel String
The compute model of the Exadata infrastructure.
cpuCount Number
The total number of CPU cores allocated.
dataStorageSizeInTbs Number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Number
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations List<Property Map>
Details of the file system configuration of the Exadata infrastructure.
id String
The provider-assigned unique ID for this managed resource.
isSchedulingPolicyAssociated Boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId String
The OCID of the last maintenance run.
lifecycleDetails String
Additional information about the current lifecycle state.
maxCpuCount Number
The total number of CPU cores available.
maxDataStorageInTbs Number
The total available DATA disk group size.
maxDbNodeStorageInGbs Number
The total local node storage available in GBs.
maxMemoryInGbs Number
The total memory available in GBs.
memorySizeInGbs Number
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion String
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId String
The OCID of the next maintenance run.
state String
The current lifecycle state of the cloud Exadata infrastructure resource.
storageServerVersion String
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs Number
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).

Look up Existing 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,
        availability_domain: Optional[str] = None,
        available_storage_size_in_gbs: Optional[int] = None,
        cluster_placement_group_id: Optional[str] = None,
        compartment_id: Optional[str] = None,
        compute_count: Optional[int] = None,
        compute_model: Optional[str] = None,
        cpu_count: Optional[int] = None,
        customer_contacts: Optional[Sequence[_database.CloudExadataInfrastructureCustomerContactArgs]] = 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,
        defined_file_system_configurations: Optional[Sequence[_database.CloudExadataInfrastructureDefinedFileSystemConfigurationArgs]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_scheduling_policy_associated: Optional[bool] = None,
        last_maintenance_run_id: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        maintenance_window: Optional[_database.CloudExadataInfrastructureMaintenanceWindowArgs] = None,
        max_cpu_count: Optional[int] = None,
        max_data_storage_in_tbs: Optional[float] = None,
        max_db_node_storage_in_gbs: Optional[int] = None,
        max_memory_in_gbs: Optional[int] = None,
        memory_size_in_gbs: Optional[int] = None,
        monthly_db_server_version: Optional[str] = None,
        monthly_storage_server_version: Optional[str] = None,
        next_maintenance_run_id: Optional[str] = None,
        shape: Optional[str] = None,
        state: Optional[str] = None,
        storage_count: Optional[int] = None,
        storage_server_type: Optional[str] = None,
        storage_server_version: Optional[str] = None,
        subscription_id: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        total_storage_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: oci:Database:CloudExadataInfrastructure    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AvailabilityDomain Changes to this property will trigger replacement. string
The availability domain where the cloud Exadata infrastructure is located.
AvailableStorageSizeInGbs int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
CompartmentId string
(Updatable) The OCID of the compartment.
ComputeCount int
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
ComputeModel string
The compute model of the Exadata infrastructure.
CpuCount int
The total number of CPU cores allocated.
CustomerContacts List<CloudExadataInfrastructureCustomerContact>
(Updatable) Customer contacts.
DataStorageSizeInTbs double
Size, in terabytes, of the DATA disk group.
DatabaseServerType Changes to this property will trigger replacement. string
The database server type of the Exadata infrastructure.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
DefinedFileSystemConfigurations List<CloudExadataInfrastructureDefinedFileSystemConfiguration>
Details of the file system configuration of the Exadata infrastructure.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
IsSchedulingPolicyAssociated bool
If true, the infrastructure is using granular maintenance scheduling preference.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LifecycleDetails string
Additional information about the current lifecycle state.
MaintenanceWindow CloudExadataInfrastructureMaintenanceWindow
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs double
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
MonthlyStorageServerVersion string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
NextMaintenanceRunId string
The OCID of the next maintenance run.
Shape Changes to this property will trigger replacement. string
The shape of the cloud Exadata infrastructure resource.
State string
The current lifecycle state of the cloud Exadata infrastructure resource.
StorageCount int
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
StorageServerType Changes to this property will trigger replacement. string
The storage server type of the Exadata infrastructure.
StorageServerVersion string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
SubscriptionId Changes to this property will trigger replacement. string

The OCID of the subscription with which resource needs to be associated with.

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

SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time the cloud Exadata infrastructure resource was created.
TotalStorageSizeInGbs int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AvailabilityDomain Changes to this property will trigger replacement. string
The availability domain where the cloud Exadata infrastructure is located.
AvailableStorageSizeInGbs int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
ClusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
CompartmentId string
(Updatable) The OCID of the compartment.
ComputeCount int
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
ComputeModel string
The compute model of the Exadata infrastructure.
CpuCount int
The total number of CPU cores allocated.
CustomerContacts []CloudExadataInfrastructureCustomerContactArgs
(Updatable) Customer contacts.
DataStorageSizeInTbs float64
Size, in terabytes, of the DATA disk group.
DatabaseServerType Changes to this property will trigger replacement. string
The database server type of the Exadata infrastructure.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
DefinedFileSystemConfigurations []CloudExadataInfrastructureDefinedFileSystemConfigurationArgs
Details of the file system configuration of the Exadata infrastructure.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
IsSchedulingPolicyAssociated bool
If true, the infrastructure is using granular maintenance scheduling preference.
LastMaintenanceRunId string
The OCID of the last maintenance run.
LifecycleDetails string
Additional information about the current lifecycle state.
MaintenanceWindow CloudExadataInfrastructureMaintenanceWindowArgs
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs float64
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
MonthlyStorageServerVersion string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
NextMaintenanceRunId string
The OCID of the next maintenance run.
Shape Changes to this property will trigger replacement. string
The shape of the cloud Exadata infrastructure resource.
State string
The current lifecycle state of the cloud Exadata infrastructure resource.
StorageCount int
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
StorageServerType Changes to this property will trigger replacement. string
The storage server type of the Exadata infrastructure.
StorageServerVersion string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
SubscriptionId Changes to this property will trigger replacement. string

The OCID of the subscription with which resource needs to be associated with.

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

SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
TimeCreated string
The date and time the cloud Exadata infrastructure resource was created.
TotalStorageSizeInGbs int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount Integer
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount Integer
The requested number of additional storage servers for the Exadata infrastructure.
availabilityDomain Changes to this property will trigger replacement. String
The availability domain where the cloud Exadata infrastructure is located.
availableStorageSizeInGbs Integer
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId String
(Updatable) The OCID of the compartment.
computeCount Integer
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
computeModel String
The compute model of the Exadata infrastructure.
cpuCount Integer
The total number of CPU cores allocated.
customerContacts List<CloudExadataInfrastructureCustomerContact>
(Updatable) Customer contacts.
dataStorageSizeInTbs Double
Size, in terabytes, of the DATA disk group.
databaseServerType Changes to this property will trigger replacement. String
The database server type of the Exadata infrastructure.
dbNodeStorageSizeInGbs Integer
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations List<CloudExadataInfrastructureDefinedFileSystemConfiguration>
Details of the file system configuration of the Exadata infrastructure.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
isSchedulingPolicyAssociated Boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId String
The OCID of the last maintenance run.
lifecycleDetails String
Additional information about the current lifecycle state.
maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount Integer
The total number of CPU cores available.
maxDataStorageInTbs Double
The total available DATA disk group size.
maxDbNodeStorageInGbs Integer
The total local node storage available in GBs.
maxMemoryInGbs Integer
The total memory available in GBs.
memorySizeInGbs Integer
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion String
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId String
The OCID of the next maintenance run.
shape Changes to this property will trigger replacement. String
The shape of the cloud Exadata infrastructure resource.
state String
The current lifecycle state of the cloud Exadata infrastructure resource.
storageCount Integer
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storageServerType Changes to this property will trigger replacement. String
The storage server type of the Exadata infrastructure.
storageServerVersion String
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscriptionId Changes to this property will trigger replacement. String

The OCID of the subscription with which resource needs to be associated with.

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

systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs Integer
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount number
The requested number of additional storage servers for the Exadata infrastructure.
availabilityDomain Changes to this property will trigger replacement. string
The availability domain where the cloud Exadata infrastructure is located.
availableStorageSizeInGbs number
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
clusterPlacementGroupId Changes to this property will trigger replacement. string
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId string
(Updatable) The OCID of the compartment.
computeCount number
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
computeModel string
The compute model of the Exadata infrastructure.
cpuCount number
The total number of CPU cores allocated.
customerContacts CloudExadataInfrastructureCustomerContact[]
(Updatable) Customer contacts.
dataStorageSizeInTbs number
Size, in terabytes, of the DATA disk group.
databaseServerType Changes to this property will trigger replacement. string
The database server type of the Exadata infrastructure.
dbNodeStorageSizeInGbs number
The local node storage allocated in GBs.
dbServerVersion string
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations CloudExadataInfrastructureDefinedFileSystemConfiguration[]
Details of the file system configuration of the Exadata infrastructure.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
isSchedulingPolicyAssociated boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId string
The OCID of the last maintenance run.
lifecycleDetails string
Additional information about the current lifecycle state.
maintenanceWindow CloudExadataInfrastructureMaintenanceWindow
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount number
The total number of CPU cores available.
maxDataStorageInTbs number
The total available DATA disk group size.
maxDbNodeStorageInGbs number
The total local node storage available in GBs.
maxMemoryInGbs number
The total memory available in GBs.
memorySizeInGbs number
The memory allocated in GBs.
monthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion string
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId string
The OCID of the next maintenance run.
shape Changes to this property will trigger replacement. string
The shape of the cloud Exadata infrastructure resource.
state string
The current lifecycle state of the cloud Exadata infrastructure resource.
storageCount number
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storageServerType Changes to this property will trigger replacement. string
The storage server type of the Exadata infrastructure.
storageServerVersion string
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscriptionId Changes to this property will trigger replacement. string

The OCID of the subscription with which resource needs to be associated with.

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

systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated string
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs number
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activated_storage_count int
The requested number of additional storage servers activated for the Exadata infrastructure.
additional_storage_count int
The requested number of additional storage servers for the Exadata infrastructure.
availability_domain Changes to this property will trigger replacement. str
The availability domain where the cloud Exadata infrastructure is located.
available_storage_size_in_gbs int
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
cluster_placement_group_id Changes to this property will trigger replacement. str
The OCID of the cluster placement group of the Exadata Infrastructure.
compartment_id str
(Updatable) The OCID of the compartment.
compute_count int
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
compute_model str
The compute model of the Exadata infrastructure.
cpu_count int
The total number of CPU cores allocated.
customer_contacts Sequence[database.CloudExadataInfrastructureCustomerContactArgs]
(Updatable) Customer contacts.
data_storage_size_in_tbs float
Size, in terabytes, of the DATA disk group.
database_server_type Changes to this property will trigger replacement. str
The database server type of the Exadata infrastructure.
db_node_storage_size_in_gbs int
The local node storage allocated in GBs.
db_server_version str
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
defined_file_system_configurations Sequence[database.CloudExadataInfrastructureDefinedFileSystemConfigurationArgs]
Details of the file system configuration of the Exadata infrastructure.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name str
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
is_scheduling_policy_associated bool
If true, the infrastructure is using granular maintenance scheduling preference.
last_maintenance_run_id str
The OCID of the last maintenance run.
lifecycle_details str
Additional information about the current lifecycle state.
maintenance_window database.CloudExadataInfrastructureMaintenanceWindowArgs
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
max_cpu_count int
The total number of CPU cores available.
max_data_storage_in_tbs float
The total available DATA disk group size.
max_db_node_storage_in_gbs int
The total local node storage available in GBs.
max_memory_in_gbs int
The total memory available in GBs.
memory_size_in_gbs int
The memory allocated in GBs.
monthly_db_server_version str
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthly_storage_server_version str
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
next_maintenance_run_id str
The OCID of the next maintenance run.
shape Changes to this property will trigger replacement. str
The shape of the cloud Exadata infrastructure resource.
state str
The current lifecycle state of the cloud Exadata infrastructure resource.
storage_count int
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storage_server_type Changes to this property will trigger replacement. str
The storage server type of the Exadata infrastructure.
storage_server_version str
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscription_id Changes to this property will trigger replacement. str

The OCID of the subscription with which resource needs to be associated with.

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

system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
time_created str
The date and time the cloud Exadata infrastructure resource was created.
total_storage_size_in_gbs int
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
activatedStorageCount Number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalStorageCount Number
The requested number of additional storage servers for the Exadata infrastructure.
availabilityDomain Changes to this property will trigger replacement. String
The availability domain where the cloud Exadata infrastructure is located.
availableStorageSizeInGbs Number
The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
clusterPlacementGroupId Changes to this property will trigger replacement. String
The OCID of the cluster placement group of the Exadata Infrastructure.
compartmentId String
(Updatable) The OCID of the compartment.
computeCount Number
(Updatable) The number of compute servers for the cloud Exadata infrastructure.
computeModel String
The compute model of the Exadata infrastructure.
cpuCount Number
The total number of CPU cores allocated.
customerContacts List<Property Map>
(Updatable) Customer contacts.
dataStorageSizeInTbs Number
Size, in terabytes, of the DATA disk group.
databaseServerType Changes to this property will trigger replacement. String
The database server type of the Exadata infrastructure.
dbNodeStorageSizeInGbs Number
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
definedFileSystemConfigurations List<Property Map>
Details of the file system configuration of the Exadata infrastructure.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
(Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
isSchedulingPolicyAssociated Boolean
If true, the infrastructure is using granular maintenance scheduling preference.
lastMaintenanceRunId String
The OCID of the last maintenance run.
lifecycleDetails String
Additional information about the current lifecycle state.
maintenanceWindow Property Map
(Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount Number
The total number of CPU cores available.
maxDataStorageInTbs Number
The total available DATA disk group size.
maxDbNodeStorageInGbs Number
The total local node storage available in GBs.
maxMemoryInGbs Number
The total memory available in GBs.
memorySizeInGbs Number
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
monthlyStorageServerVersion String
The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
nextMaintenanceRunId String
The OCID of the next maintenance run.
shape Changes to this property will trigger replacement. String
The shape of the cloud Exadata infrastructure resource.
state String
The current lifecycle state of the cloud Exadata infrastructure resource.
storageCount Number
(Updatable) The number of storage servers for the cloud Exadata infrastructure.
storageServerType Changes to this property will trigger replacement. String
The storage server type of the Exadata infrastructure.
storageServerVersion String
The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
subscriptionId Changes to this property will trigger replacement. String

The OCID of the subscription with which resource needs to be associated with.

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

systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
timeCreated String
The date and time the cloud Exadata infrastructure resource was created.
totalStorageSizeInGbs Number
The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).

Supporting Types

CloudExadataInfrastructureCustomerContact
, CloudExadataInfrastructureCustomerContactArgs

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

CloudExadataInfrastructureDefinedFileSystemConfiguration
, CloudExadataInfrastructureDefinedFileSystemConfigurationArgs

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

CloudExadataInfrastructureMaintenanceWindow
, CloudExadataInfrastructureMaintenanceWindowArgs

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

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
(Updatable) If true, enables the monthly patching option.
LeadTimeInWeeks int
(Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months List<CloudExadataInfrastructureMaintenanceWindowMonth>
(Updatable) Months during the year when maintenance should be performed.
PatchingMode string

(Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

Preference string
(Updatable) The maintenance window scheduling preference.
SkipRus List<bool>
WeeksOfMonths List<int>
(Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
CustomActionTimeoutInMins int
(Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
DaysOfWeeks []CloudExadataInfrastructureMaintenanceWindowDaysOfWeek
(Updatable) Days during the week when maintenance should be performed.
HoursOfDays []int
(Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
(Updatable) If true, enables the monthly patching option.
LeadTimeInWeeks int
(Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
Months []CloudExadataInfrastructureMaintenanceWindowMonth
(Updatable) Months during the year when maintenance should be performed.
PatchingMode string

(Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

Preference string
(Updatable) The maintenance window scheduling preference.
SkipRus []bool
WeeksOfMonths []int
(Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins Integer
(Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
daysOfWeeks List<CloudExadataInfrastructureMaintenanceWindowDaysOfWeek>
(Updatable) Days during the week when maintenance should be performed.
hoursOfDays List<Integer>
(Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
(Updatable) If true, enables the monthly patching option.
leadTimeInWeeks Integer
(Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months List<CloudExadataInfrastructureMaintenanceWindowMonth>
(Updatable) Months during the year when maintenance should be performed.
patchingMode String

(Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

preference String
(Updatable) The maintenance window scheduling preference.
skipRus List<Boolean>
weeksOfMonths List<Integer>
(Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins number
(Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
daysOfWeeks CloudExadataInfrastructureMaintenanceWindowDaysOfWeek[]
(Updatable) Days during the week when maintenance should be performed.
hoursOfDays number[]
(Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled boolean
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled boolean
(Updatable) If true, enables the monthly patching option.
leadTimeInWeeks number
(Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months CloudExadataInfrastructureMaintenanceWindowMonth[]
(Updatable) Months during the year when maintenance should be performed.
patchingMode string

(Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

preference string
(Updatable) The maintenance window scheduling preference.
skipRus boolean[]
weeksOfMonths number[]
(Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
custom_action_timeout_in_mins int
(Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
days_of_weeks Sequence[database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeek]
(Updatable) Days during the week when maintenance should be performed.
hours_of_days Sequence[int]
(Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
is_custom_action_timeout_enabled bool
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
is_monthly_patching_enabled bool
(Updatable) If true, enables the monthly patching option.
lead_time_in_weeks int
(Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months Sequence[database.CloudExadataInfrastructureMaintenanceWindowMonth]
(Updatable) Months during the year when maintenance should be performed.
patching_mode str

(Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

preference str
(Updatable) The maintenance window scheduling preference.
skip_rus Sequence[bool]
weeks_of_months Sequence[int]
(Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
customActionTimeoutInMins Number
(Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
daysOfWeeks List<Property Map>
(Updatable) Days during the week when maintenance should be performed.
hoursOfDays List<Number>
(Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean
(Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
(Updatable) If true, enables the monthly patching option.
leadTimeInWeeks Number
(Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
months List<Property Map>
(Updatable) Months during the year when maintenance should be performed.
patchingMode String

(Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

preference String
(Updatable) The maintenance window scheduling preference.
skipRus List<Boolean>
weeksOfMonths List<Number>
(Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

CloudExadataInfrastructureMaintenanceWindowDaysOfWeek
, CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs

Name This property is required. string
(Updatable) Name of the day of the week.
Name This property is required. string
(Updatable) Name of the day of the week.
name This property is required. String
(Updatable) Name of the day of the week.
name This property is required. string
(Updatable) Name of the day of the week.
name This property is required. str
(Updatable) Name of the day of the week.
name This property is required. String
(Updatable) Name of the day of the week.

CloudExadataInfrastructureMaintenanceWindowMonth
, CloudExadataInfrastructureMaintenanceWindowMonthArgs

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

Import

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

$ pulumi import oci:Database/cloudExadataInfrastructure:CloudExadataInfrastructure test_cloud_exadata_infrastructure "id"
Copy

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

Package Details

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