1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. CloudExadataInfrastructure
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Database.CloudExadataInfrastructure

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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("testCloudExadataInfrastructure", {
        availabilityDomain: _var.cloud_exadata_infrastructure_availability_domain,
        compartmentId: _var.compartment_id,
        displayName: _var.cloud_exadata_infrastructure_display_name,
        shape: _var.cloud_exadata_infrastructure_shape,
        clusterPlacementGroupId: _var.cloud_exadata_infrastructure_cluster_placement_group_id,
        computeCount: _var.cloud_exadata_infrastructure_compute_count,
        customerContacts: [{
            email: _var.cloud_exadata_infrastructure_customer_contacts_email,
        }],
        definedTags: _var.cloud_exadata_infrastructure_defined_tags,
        freeformTags: {
            Department: "Finance",
        },
        maintenanceWindow: {
            customActionTimeoutInMins: _var.cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins,
            daysOfWeeks: [{
                name: _var.cloud_exadata_infrastructure_maintenance_window_days_of_week_name,
            }],
            hoursOfDays: _var.cloud_exadata_infrastructure_maintenance_window_hours_of_day,
            isCustomActionTimeoutEnabled: _var.cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled,
            isMonthlyPatchingEnabled: _var.cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled,
            leadTimeInWeeks: _var.cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks,
            months: [{
                name: _var.cloud_exadata_infrastructure_maintenance_window_months_name,
            }],
            patchingMode: _var.cloud_exadata_infrastructure_maintenance_window_patching_mode,
            preference: _var.cloud_exadata_infrastructure_maintenance_window_preference,
            weeksOfMonths: _var.cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
        },
        storageCount: _var.cloud_exadata_infrastructure_storage_count,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_exadata_infrastructure = oci.database.CloudExadataInfrastructure("testCloudExadataInfrastructure",
        availability_domain=var["cloud_exadata_infrastructure_availability_domain"],
        compartment_id=var["compartment_id"],
        display_name=var["cloud_exadata_infrastructure_display_name"],
        shape=var["cloud_exadata_infrastructure_shape"],
        cluster_placement_group_id=var["cloud_exadata_infrastructure_cluster_placement_group_id"],
        compute_count=var["cloud_exadata_infrastructure_compute_count"],
        customer_contacts=[oci.database.CloudExadataInfrastructureCustomerContactArgs(
            email=var["cloud_exadata_infrastructure_customer_contacts_email"],
        )],
        defined_tags=var["cloud_exadata_infrastructure_defined_tags"],
        freeform_tags={
            "Department": "Finance",
        },
        maintenance_window=oci.database.CloudExadataInfrastructureMaintenanceWindowArgs(
            custom_action_timeout_in_mins=var["cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins"],
            days_of_weeks=[oci.database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs(
                name=var["cloud_exadata_infrastructure_maintenance_window_days_of_week_name"],
            )],
            hours_of_days=var["cloud_exadata_infrastructure_maintenance_window_hours_of_day"],
            is_custom_action_timeout_enabled=var["cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled"],
            is_monthly_patching_enabled=var["cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled"],
            lead_time_in_weeks=var["cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks"],
            months=[oci.database.CloudExadataInfrastructureMaintenanceWindowMonthArgs(
                name=var["cloud_exadata_infrastructure_maintenance_window_months_name"],
            )],
            patching_mode=var["cloud_exadata_infrastructure_maintenance_window_patching_mode"],
            preference=var["cloud_exadata_infrastructure_maintenance_window_preference"],
            weeks_of_months=var["cloud_exadata_infrastructure_maintenance_window_weeks_of_month"],
        ),
        storage_count=var["cloud_exadata_infrastructure_storage_count"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.NewCloudExadataInfrastructure(ctx, "testCloudExadataInfrastructure", &Database.CloudExadataInfrastructureArgs{
    			AvailabilityDomain:      pulumi.Any(_var.Cloud_exadata_infrastructure_availability_domain),
    			CompartmentId:           pulumi.Any(_var.Compartment_id),
    			DisplayName:             pulumi.Any(_var.Cloud_exadata_infrastructure_display_name),
    			Shape:                   pulumi.Any(_var.Cloud_exadata_infrastructure_shape),
    			ClusterPlacementGroupId: pulumi.Any(_var.Cloud_exadata_infrastructure_cluster_placement_group_id),
    			ComputeCount:            pulumi.Any(_var.Cloud_exadata_infrastructure_compute_count),
    			CustomerContacts: database.CloudExadataInfrastructureCustomerContactArray{
    				&database.CloudExadataInfrastructureCustomerContactArgs{
    					Email: pulumi.Any(_var.Cloud_exadata_infrastructure_customer_contacts_email),
    				},
    			},
    			DefinedTags: pulumi.Any(_var.Cloud_exadata_infrastructure_defined_tags),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			MaintenanceWindow: &database.CloudExadataInfrastructureMaintenanceWindowArgs{
    				CustomActionTimeoutInMins: pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins),
    				DaysOfWeeks: database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArray{
    					&database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs{
    						Name: pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_days_of_week_name),
    					},
    				},
    				HoursOfDays:                  pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_hours_of_day),
    				IsCustomActionTimeoutEnabled: pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled),
    				IsMonthlyPatchingEnabled:     pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled),
    				LeadTimeInWeeks:              pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks),
    				Months: database.CloudExadataInfrastructureMaintenanceWindowMonthArray{
    					&database.CloudExadataInfrastructureMaintenanceWindowMonthArgs{
    						Name: pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_months_name),
    					},
    				},
    				PatchingMode:  pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_patching_mode),
    				Preference:    pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_preference),
    				WeeksOfMonths: pulumi.Any(_var.Cloud_exadata_infrastructure_maintenance_window_weeks_of_month),
    			},
    			StorageCount: pulumi.Any(_var.Cloud_exadata_infrastructure_storage_count),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testCloudExadataInfrastructure = new Oci.Database.CloudExadataInfrastructure("testCloudExadataInfrastructure", new()
        {
            AvailabilityDomain = @var.Cloud_exadata_infrastructure_availability_domain,
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Cloud_exadata_infrastructure_display_name,
            Shape = @var.Cloud_exadata_infrastructure_shape,
            ClusterPlacementGroupId = @var.Cloud_exadata_infrastructure_cluster_placement_group_id,
            ComputeCount = @var.Cloud_exadata_infrastructure_compute_count,
            CustomerContacts = new[]
            {
                new Oci.Database.Inputs.CloudExadataInfrastructureCustomerContactArgs
                {
                    Email = @var.Cloud_exadata_infrastructure_customer_contacts_email,
                },
            },
            DefinedTags = @var.Cloud_exadata_infrastructure_defined_tags,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            MaintenanceWindow = new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowArgs
            {
                CustomActionTimeoutInMins = @var.Cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins,
                DaysOfWeeks = new[]
                {
                    new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
                    {
                        Name = @var.Cloud_exadata_infrastructure_maintenance_window_days_of_week_name,
                    },
                },
                HoursOfDays = @var.Cloud_exadata_infrastructure_maintenance_window_hours_of_day,
                IsCustomActionTimeoutEnabled = @var.Cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled,
                IsMonthlyPatchingEnabled = @var.Cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled,
                LeadTimeInWeeks = @var.Cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks,
                Months = new[]
                {
                    new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowMonthArgs
                    {
                        Name = @var.Cloud_exadata_infrastructure_maintenance_window_months_name,
                    },
                },
                PatchingMode = @var.Cloud_exadata_infrastructure_maintenance_window_patching_mode,
                Preference = @var.Cloud_exadata_infrastructure_maintenance_window_preference,
                WeeksOfMonths = @var.Cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
            },
            StorageCount = @var.Cloud_exadata_infrastructure_storage_count,
        });
    
    });
    
    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(var_.cloud_exadata_infrastructure_availability_domain())
                .compartmentId(var_.compartment_id())
                .displayName(var_.cloud_exadata_infrastructure_display_name())
                .shape(var_.cloud_exadata_infrastructure_shape())
                .clusterPlacementGroupId(var_.cloud_exadata_infrastructure_cluster_placement_group_id())
                .computeCount(var_.cloud_exadata_infrastructure_compute_count())
                .customerContacts(CloudExadataInfrastructureCustomerContactArgs.builder()
                    .email(var_.cloud_exadata_infrastructure_customer_contacts_email())
                    .build())
                .definedTags(var_.cloud_exadata_infrastructure_defined_tags())
                .freeformTags(Map.of("Department", "Finance"))
                .maintenanceWindow(CloudExadataInfrastructureMaintenanceWindowArgs.builder()
                    .customActionTimeoutInMins(var_.cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins())
                    .daysOfWeeks(CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs.builder()
                        .name(var_.cloud_exadata_infrastructure_maintenance_window_days_of_week_name())
                        .build())
                    .hoursOfDays(var_.cloud_exadata_infrastructure_maintenance_window_hours_of_day())
                    .isCustomActionTimeoutEnabled(var_.cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled())
                    .isMonthlyPatchingEnabled(var_.cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled())
                    .leadTimeInWeeks(var_.cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks())
                    .months(CloudExadataInfrastructureMaintenanceWindowMonthArgs.builder()
                        .name(var_.cloud_exadata_infrastructure_maintenance_window_months_name())
                        .build())
                    .patchingMode(var_.cloud_exadata_infrastructure_maintenance_window_patching_mode())
                    .preference(var_.cloud_exadata_infrastructure_maintenance_window_preference())
                    .weeksOfMonths(var_.cloud_exadata_infrastructure_maintenance_window_weeks_of_month())
                    .build())
                .storageCount(var_.cloud_exadata_infrastructure_storage_count())
                .build());
    
        }
    }
    
    resources:
      testCloudExadataInfrastructure:
        type: oci:Database:CloudExadataInfrastructure
        properties:
          #Required
          availabilityDomain: ${var.cloud_exadata_infrastructure_availability_domain}
          compartmentId: ${var.compartment_id}
          displayName: ${var.cloud_exadata_infrastructure_display_name}
          shape: ${var.cloud_exadata_infrastructure_shape}
          #Optional
          clusterPlacementGroupId: ${var.cloud_exadata_infrastructure_cluster_placement_group_id}
          computeCount: ${var.cloud_exadata_infrastructure_compute_count}
          customerContacts:
            - email: ${var.cloud_exadata_infrastructure_customer_contacts_email}
          definedTags: ${var.cloud_exadata_infrastructure_defined_tags}
          freeformTags:
            Department: Finance
          maintenanceWindow:
            customActionTimeoutInMins: ${var.cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins}
            daysOfWeeks:
              - name: ${var.cloud_exadata_infrastructure_maintenance_window_days_of_week_name}
            hoursOfDays: ${var.cloud_exadata_infrastructure_maintenance_window_hours_of_day}
            isCustomActionTimeoutEnabled: ${var.cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled}
            isMonthlyPatchingEnabled: ${var.cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled}
            leadTimeInWeeks: ${var.cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks}
            months:
              - name: ${var.cloud_exadata_infrastructure_maintenance_window_months_name}
            patchingMode: ${var.cloud_exadata_infrastructure_maintenance_window_patching_mode}
            preference: ${var.cloud_exadata_infrastructure_maintenance_window_preference}
            weeksOfMonths: ${var.cloud_exadata_infrastructure_maintenance_window_weeks_of_month}
          storageCount: ${var.cloud_exadata_infrastructure_storage_count}
    

    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,
                                   compartment_id: Optional[str] = None,
                                   display_name: Optional[str] = None,
                                   shape: Optional[str] = None,
                                   cluster_placement_group_id: Optional[str] = None,
                                   compute_count: Optional[int] = None,
                                   customer_contacts: Optional[Sequence[_database.CloudExadataInfrastructureCustomerContactArgs]] = None,
                                   defined_tags: Optional[Mapping[str, Any]] = None,
                                   freeform_tags: Optional[Mapping[str, Any]] = None,
                                   maintenance_window: Optional[_database.CloudExadataInfrastructureMaintenanceWindowArgs] = None,
                                   storage_count: Optional[int] = 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 string
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudExadataInfrastructureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var cloudExadataInfrastructureResource = new Oci.Database.CloudExadataInfrastructure("cloudExadataInfrastructureResource", new()
    {
        AvailabilityDomain = "string",
        CompartmentId = "string",
        DisplayName = "string",
        Shape = "string",
        ClusterPlacementGroupId = "string",
        ComputeCount = 0,
        CustomerContacts = new[]
        {
            new Oci.Database.Inputs.CloudExadataInfrastructureCustomerContactArgs
            {
                Email = "string",
            },
        },
        DefinedTags = 
        {
            { "string", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
        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,
            },
        },
        StorageCount = 0,
    });
    
    example, err := Database.NewCloudExadataInfrastructure(ctx, "cloudExadataInfrastructureResource", &Database.CloudExadataInfrastructureArgs{
    	AvailabilityDomain:      pulumi.String("string"),
    	CompartmentId:           pulumi.String("string"),
    	DisplayName:             pulumi.String("string"),
    	Shape:                   pulumi.String("string"),
    	ClusterPlacementGroupId: pulumi.String("string"),
    	ComputeCount:            pulumi.Int(0),
    	CustomerContacts: database.CloudExadataInfrastructureCustomerContactArray{
    		&database.CloudExadataInfrastructureCustomerContactArgs{
    			Email: pulumi.String("string"),
    		},
    	},
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	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),
    		},
    	},
    	StorageCount: pulumi.Int(0),
    })
    
    var cloudExadataInfrastructureResource = new CloudExadataInfrastructure("cloudExadataInfrastructureResource", CloudExadataInfrastructureArgs.builder()        
        .availabilityDomain("string")
        .compartmentId("string")
        .displayName("string")
        .shape("string")
        .clusterPlacementGroupId("string")
        .computeCount(0)
        .customerContacts(CloudExadataInfrastructureCustomerContactArgs.builder()
            .email("string")
            .build())
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .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())
        .storageCount(0)
        .build());
    
    cloud_exadata_infrastructure_resource = oci.database.CloudExadataInfrastructure("cloudExadataInfrastructureResource",
        availability_domain="string",
        compartment_id="string",
        display_name="string",
        shape="string",
        cluster_placement_group_id="string",
        compute_count=0,
        customer_contacts=[oci.database.CloudExadataInfrastructureCustomerContactArgs(
            email="string",
        )],
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        },
        maintenance_window=oci.database.CloudExadataInfrastructureMaintenanceWindowArgs(
            custom_action_timeout_in_mins=0,
            days_of_weeks=[oci.database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs(
                name="string",
            )],
            hours_of_days=[0],
            is_custom_action_timeout_enabled=False,
            is_monthly_patching_enabled=False,
            lead_time_in_weeks=0,
            months=[oci.database.CloudExadataInfrastructureMaintenanceWindowMonthArgs(
                name="string",
            )],
            patching_mode="string",
            preference="string",
            skip_rus=[False],
            weeks_of_months=[0],
        ),
        storage_count=0)
    
    const cloudExadataInfrastructureResource = new oci.database.CloudExadataInfrastructure("cloudExadataInfrastructureResource", {
        availabilityDomain: "string",
        compartmentId: "string",
        displayName: "string",
        shape: "string",
        clusterPlacementGroupId: "string",
        computeCount: 0,
        customerContacts: [{
            email: "string",
        }],
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
        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],
        },
        storageCount: 0,
    });
    
    type: oci:Database:CloudExadataInfrastructure
    properties:
        availabilityDomain: string
        clusterPlacementGroupId: string
        compartmentId: string
        computeCount: 0
        customerContacts:
            - email: string
        definedTags:
            string: any
        displayName: string
        freeformTags:
            string: any
        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
    

    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

    The CloudExadataInfrastructure resource accepts the following input properties:

    AvailabilityDomain string
    The availability domain where the cloud Exadata infrastructure is located.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DisplayName string
    (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    Shape string
    The shape of the cloud Exadata infrastructure resource.
    ClusterPlacementGroupId 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.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags Dictionary<string, object>
    (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.

    ** 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 string
    The availability domain where the cloud Exadata infrastructure is located.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DisplayName string
    (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    Shape string
    The shape of the cloud Exadata infrastructure resource.
    ClusterPlacementGroupId 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.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags map[string]interface{}
    (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.

    ** 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 String
    The availability domain where the cloud Exadata infrastructure is located.
    compartmentId String
    (Updatable) The OCID of the compartment.
    displayName String
    (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    shape String
    The shape of the cloud Exadata infrastructure resource.
    clusterPlacementGroupId 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.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String,Object>
    (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.

    ** 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 string
    The availability domain where the cloud Exadata infrastructure is located.
    compartmentId string
    (Updatable) The OCID of the compartment.
    displayName string
    (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    shape string
    The shape of the cloud Exadata infrastructure resource.
    clusterPlacementGroupId 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.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags {[key: string]: any}
    (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.

    ** 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 str
    The availability domain where the cloud Exadata infrastructure is located.
    compartment_id str
    (Updatable) The OCID of the compartment.
    display_name str
    (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    shape str
    The shape of the cloud Exadata infrastructure resource.
    cluster_placement_group_id 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.
    defined_tags Mapping[str, Any]
    (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, Any]
    (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.

    ** 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 String
    The availability domain where the cloud Exadata infrastructure is located.
    compartmentId String
    (Updatable) The OCID of the compartment.
    displayName String
    (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
    shape String
    The shape of the cloud Exadata infrastructure resource.
    clusterPlacementGroupId 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.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<Any>
    (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.

    ** 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).
    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
    Id string
    The provider-assigned unique ID for this managed resource.
    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, object>
    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).
    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
    Id string
    The provider-assigned unique ID for this managed resource.
    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]interface{}
    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).
    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
    id String
    The provider-assigned unique ID for this managed resource.
    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,Object>
    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).
    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
    id string
    The provider-assigned unique ID for this managed resource.
    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]: any}
    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).
    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
    id str
    The provider-assigned unique ID for this managed resource.
    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, Any]
    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).
    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
    id String
    The provider-assigned unique ID for this managed resource.
    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<Any>
    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,
            cpu_count: Optional[int] = None,
            customer_contacts: Optional[Sequence[_database.CloudExadataInfrastructureCustomerContactArgs]] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_server_version: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = 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_version: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ActivatedStorageCount int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    AdditionalStorageCount int
    The requested number of additional storage servers for the Exadata infrastructure.
    AvailabilityDomain string
    The 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 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.
    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.
    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
    DefinedTags Dictionary<string, object>
    (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, object>
    (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"}
    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 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.

    ** 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

    StorageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    TotalStorageSizeInGbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    ActivatedStorageCount int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    AdditionalStorageCount int
    The requested number of additional storage servers for the Exadata infrastructure.
    AvailabilityDomain string
    The 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 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.
    CpuCount int
    The total number of CPU cores allocated.
    CustomerContacts []CloudExadataInfrastructureCustomerContactArgs
    (Updatable) Customer contacts.
    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
    DefinedTags map[string]interface{}
    (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]interface{}
    (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"}
    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 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.

    ** 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

    StorageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    TotalStorageSizeInGbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount Integer
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount Integer
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain String
    The 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 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.
    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.
    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
    definedTags Map<String,Object>
    (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,Object>
    (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"}
    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 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.

    ** 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

    storageServerVersion String
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageSizeInGbs Integer
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount number
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount number
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain string
    The 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 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.
    cpuCount number
    The total number of CPU cores allocated.
    customerContacts CloudExadataInfrastructureCustomerContact[]
    (Updatable) Customer contacts.
    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
    definedTags {[key: string]: any}
    (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]: any}
    (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"}
    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 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.

    ** 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

    storageServerVersion string
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time the cloud Exadata infrastructure resource was created.
    totalStorageSizeInGbs number
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activated_storage_count int
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additional_storage_count int
    The requested number of additional storage servers for the Exadata infrastructure.
    availability_domain str
    The 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 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.
    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.
    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_tags Mapping[str, Any]
    (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, Any]
    (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"}
    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 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.

    ** 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

    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, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    time_created str
    The date and time the cloud Exadata infrastructure resource was created.
    total_storage_size_in_gbs int
    The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
    activatedStorageCount Number
    The requested number of additional storage servers activated for the Exadata infrastructure.
    additionalStorageCount Number
    The requested number of additional storage servers for the Exadata infrastructure.
    availabilityDomain String
    The 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 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.
    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.
    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
    definedTags Map<Any>
    (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<Any>
    (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"}
    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 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.

    ** 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

    storageServerVersion String
    The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
    systemTags Map<Any>
    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.

    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 string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    CloudExadataInfrastructureMaintenanceWindowMonth, CloudExadataInfrastructureMaintenanceWindowMonthArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name 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"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi