1. Packages
  2. Azure Classic
  3. API Docs
  4. oracle
  5. ExadataInfrastructure

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

azure.oracle.ExadataInfrastructure

Explore with Pulumi AI

Manages a Cloud Exadata Infrastructure.

Example Usage

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

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleExadataInfrastructure = new azure.oracle.ExadataInfrastructure("example", {
    name: "example-exadata-infra",
    resourceGroupName: example.name,
    location: example.location,
    zones: ["1"],
    displayName: "example-exadata-infra",
    storageCount: 3,
    computeCount: 2,
    shape: "Exadata.X9M",
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_exadata_infrastructure = azure.oracle.ExadataInfrastructure("example",
    name="example-exadata-infra",
    resource_group_name=example.name,
    location=example.location,
    zones=["1"],
    display_name="example-exadata-infra",
    storage_count=3,
    compute_count=2,
    shape="Exadata.X9M")
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/oracle"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = oracle.NewExadataInfrastructure(ctx, "example", &oracle.ExadataInfrastructureArgs{
			Name:              pulumi.String("example-exadata-infra"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
			Zones: pulumi.StringArray{
				pulumi.String("1"),
			},
			DisplayName:  pulumi.String("example-exadata-infra"),
			StorageCount: pulumi.Int(3),
			ComputeCount: pulumi.Int(2),
			Shape:        pulumi.String("Exadata.X9M"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleExadataInfrastructure = new Azure.Oracle.ExadataInfrastructure("example", new()
    {
        Name = "example-exadata-infra",
        ResourceGroupName = example.Name,
        Location = example.Location,
        Zones = new[]
        {
            "1",
        },
        DisplayName = "example-exadata-infra",
        StorageCount = 3,
        ComputeCount = 2,
        Shape = "Exadata.X9M",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.oracle.ExadataInfrastructure;
import com.pulumi.azure.oracle.ExadataInfrastructureArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleExadataInfrastructure = new ExadataInfrastructure("exampleExadataInfrastructure", ExadataInfrastructureArgs.builder()
            .name("example-exadata-infra")
            .resourceGroupName(example.name())
            .location(example.location())
            .zones("1")
            .displayName("example-exadata-infra")
            .storageCount(3)
            .computeCount(2)
            .shape("Exadata.X9M")
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleExadataInfrastructure:
    type: azure:oracle:ExadataInfrastructure
    name: example
    properties:
      name: example-exadata-infra
      resourceGroupName: ${example.name}
      location: ${example.location}
      zones:
        - '1'
      displayName: example-exadata-infra
      storageCount: 3
      computeCount: 2
      shape: Exadata.X9M
Copy

Create ExadataInfrastructure Resource

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

Constructor syntax

new ExadataInfrastructure(name: string, args: ExadataInfrastructureArgs, opts?: CustomResourceOptions);
@overload
def ExadataInfrastructure(resource_name: str,
                          args: ExadataInfrastructureArgs,
                          opts: Optional[ResourceOptions] = None)

@overload
def ExadataInfrastructure(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          compute_count: Optional[int] = None,
                          display_name: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          shape: Optional[str] = None,
                          storage_count: Optional[int] = None,
                          zones: Optional[Sequence[str]] = None,
                          customer_contacts: Optional[Sequence[str]] = None,
                          location: Optional[str] = None,
                          maintenance_windows: Optional[Sequence[ExadataInfrastructureMaintenanceWindowArgs]] = None,
                          name: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)
func NewExadataInfrastructure(ctx *Context, name string, args ExadataInfrastructureArgs, opts ...ResourceOption) (*ExadataInfrastructure, error)
public ExadataInfrastructure(string name, ExadataInfrastructureArgs args, CustomResourceOptions? opts = null)
public ExadataInfrastructure(String name, ExadataInfrastructureArgs args)
public ExadataInfrastructure(String name, ExadataInfrastructureArgs args, CustomResourceOptions options)
type: azure:oracle:ExadataInfrastructure
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

Constructor example

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

var exadataInfrastructureResource = new Azure.Oracle.ExadataInfrastructure("exadataInfrastructureResource", new()
{
    ComputeCount = 0,
    DisplayName = "string",
    ResourceGroupName = "string",
    Shape = "string",
    StorageCount = 0,
    Zones = new[]
    {
        "string",
    },
    CustomerContacts = new[]
    {
        "string",
    },
    Location = "string",
    MaintenanceWindows = new[]
    {
        new Azure.Oracle.Inputs.ExadataInfrastructureMaintenanceWindowArgs
        {
            DaysOfWeeks = new[]
            {
                "string",
            },
            HoursOfDays = new[]
            {
                0,
            },
            LeadTimeInWeeks = 0,
            Months = new[]
            {
                "string",
            },
            PatchingMode = "string",
            Preference = "string",
            WeeksOfMonths = new[]
            {
                0,
            },
        },
    },
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := oracle.NewExadataInfrastructure(ctx, "exadataInfrastructureResource", &oracle.ExadataInfrastructureArgs{
	ComputeCount:      pulumi.Int(0),
	DisplayName:       pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Shape:             pulumi.String("string"),
	StorageCount:      pulumi.Int(0),
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
	CustomerContacts: pulumi.StringArray{
		pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	MaintenanceWindows: oracle.ExadataInfrastructureMaintenanceWindowArray{
		&oracle.ExadataInfrastructureMaintenanceWindowArgs{
			DaysOfWeeks: pulumi.StringArray{
				pulumi.String("string"),
			},
			HoursOfDays: pulumi.IntArray{
				pulumi.Int(0),
			},
			LeadTimeInWeeks: pulumi.Int(0),
			Months: pulumi.StringArray{
				pulumi.String("string"),
			},
			PatchingMode: pulumi.String("string"),
			Preference:   pulumi.String("string"),
			WeeksOfMonths: pulumi.IntArray{
				pulumi.Int(0),
			},
		},
	},
	Name: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var exadataInfrastructureResource = new ExadataInfrastructure("exadataInfrastructureResource", ExadataInfrastructureArgs.builder()
    .computeCount(0)
    .displayName("string")
    .resourceGroupName("string")
    .shape("string")
    .storageCount(0)
    .zones("string")
    .customerContacts("string")
    .location("string")
    .maintenanceWindows(ExadataInfrastructureMaintenanceWindowArgs.builder()
        .daysOfWeeks("string")
        .hoursOfDays(0)
        .leadTimeInWeeks(0)
        .months("string")
        .patchingMode("string")
        .preference("string")
        .weeksOfMonths(0)
        .build())
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
exadata_infrastructure_resource = azure.oracle.ExadataInfrastructure("exadataInfrastructureResource",
    compute_count=0,
    display_name="string",
    resource_group_name="string",
    shape="string",
    storage_count=0,
    zones=["string"],
    customer_contacts=["string"],
    location="string",
    maintenance_windows=[{
        "days_of_weeks": ["string"],
        "hours_of_days": [0],
        "lead_time_in_weeks": 0,
        "months": ["string"],
        "patching_mode": "string",
        "preference": "string",
        "weeks_of_months": [0],
    }],
    name="string",
    tags={
        "string": "string",
    })
Copy
const exadataInfrastructureResource = new azure.oracle.ExadataInfrastructure("exadataInfrastructureResource", {
    computeCount: 0,
    displayName: "string",
    resourceGroupName: "string",
    shape: "string",
    storageCount: 0,
    zones: ["string"],
    customerContacts: ["string"],
    location: "string",
    maintenanceWindows: [{
        daysOfWeeks: ["string"],
        hoursOfDays: [0],
        leadTimeInWeeks: 0,
        months: ["string"],
        patchingMode: "string",
        preference: "string",
        weeksOfMonths: [0],
    }],
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:oracle:ExadataInfrastructure
properties:
    computeCount: 0
    customerContacts:
        - string
    displayName: string
    location: string
    maintenanceWindows:
        - daysOfWeeks:
            - string
          hoursOfDays:
            - 0
          leadTimeInWeeks: 0
          months:
            - string
          patchingMode: string
          preference: string
          weeksOfMonths:
            - 0
    name: string
    resourceGroupName: string
    shape: string
    storageCount: 0
    tags:
        string: string
    zones:
        - string
Copy

ExadataInfrastructure Resource Properties

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

Inputs

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

The ExadataInfrastructure resource accepts the following input properties:

ComputeCount
This property is required.
Changes to this property will trigger replacement.
int
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
DisplayName
This property is required.
Changes to this property will trigger replacement.
string
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
Shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
StorageCount
This property is required.
Changes to this property will trigger replacement.
int
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Zones
This property is required.
Changes to this property will trigger replacement.
List<string>
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
CustomerContacts Changes to this property will trigger replacement. List<string>
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
MaintenanceWindows Changes to this property will trigger replacement. List<ExadataInfrastructureMaintenanceWindow>
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
ComputeCount
This property is required.
Changes to this property will trigger replacement.
int
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
DisplayName
This property is required.
Changes to this property will trigger replacement.
string
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
Shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
StorageCount
This property is required.
Changes to this property will trigger replacement.
int
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Zones
This property is required.
Changes to this property will trigger replacement.
[]string
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
CustomerContacts Changes to this property will trigger replacement. []string
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
MaintenanceWindows Changes to this property will trigger replacement. []ExadataInfrastructureMaintenanceWindowArgs
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
computeCount
This property is required.
Changes to this property will trigger replacement.
Integer
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
displayName
This property is required.
Changes to this property will trigger replacement.
String
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape
This property is required.
Changes to this property will trigger replacement.
String
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storageCount
This property is required.
Changes to this property will trigger replacement.
Integer
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
zones
This property is required.
Changes to this property will trigger replacement.
List<String>
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
customerContacts Changes to this property will trigger replacement. List<String>
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenanceWindows Changes to this property will trigger replacement. List<ExadataInfrastructureMaintenanceWindow>
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
computeCount
This property is required.
Changes to this property will trigger replacement.
number
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
displayName
This property is required.
Changes to this property will trigger replacement.
string
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape
This property is required.
Changes to this property will trigger replacement.
string
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storageCount
This property is required.
Changes to this property will trigger replacement.
number
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
zones
This property is required.
Changes to this property will trigger replacement.
string[]
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
customerContacts Changes to this property will trigger replacement. string[]
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenanceWindows Changes to this property will trigger replacement. ExadataInfrastructureMaintenanceWindow[]
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
compute_count
This property is required.
Changes to this property will trigger replacement.
int
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
display_name
This property is required.
Changes to this property will trigger replacement.
str
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape
This property is required.
Changes to this property will trigger replacement.
str
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storage_count
This property is required.
Changes to this property will trigger replacement.
int
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
zones
This property is required.
Changes to this property will trigger replacement.
Sequence[str]
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
customer_contacts Changes to this property will trigger replacement. Sequence[str]
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenance_windows Changes to this property will trigger replacement. Sequence[ExadataInfrastructureMaintenanceWindowArgs]
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
computeCount
This property is required.
Changes to this property will trigger replacement.
Number
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
displayName
This property is required.
Changes to this property will trigger replacement.
String
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape
This property is required.
Changes to this property will trigger replacement.
String
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storageCount
This property is required.
Changes to this property will trigger replacement.
Number
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
zones
This property is required.
Changes to this property will trigger replacement.
List<String>
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
customerContacts Changes to this property will trigger replacement. List<String>
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenanceWindows Changes to this property will trigger replacement. List<Property Map>
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags Map<String>
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ExadataInfrastructure Resource

Get an existing ExadataInfrastructure 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?: ExadataInfrastructureState, opts?: CustomResourceOptions): ExadataInfrastructure
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compute_count: Optional[int] = None,
        customer_contacts: Optional[Sequence[str]] = None,
        display_name: Optional[str] = None,
        location: Optional[str] = None,
        maintenance_windows: Optional[Sequence[ExadataInfrastructureMaintenanceWindowArgs]] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        shape: Optional[str] = None,
        storage_count: Optional[int] = None,
        tags: Optional[Mapping[str, str]] = None,
        zones: Optional[Sequence[str]] = None) -> ExadataInfrastructure
func GetExadataInfrastructure(ctx *Context, name string, id IDInput, state *ExadataInfrastructureState, opts ...ResourceOption) (*ExadataInfrastructure, error)
public static ExadataInfrastructure Get(string name, Input<string> id, ExadataInfrastructureState? state, CustomResourceOptions? opts = null)
public static ExadataInfrastructure get(String name, Output<String> id, ExadataInfrastructureState state, CustomResourceOptions options)
resources:  _:    type: azure:oracle:ExadataInfrastructure    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ComputeCount Changes to this property will trigger replacement. int
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
CustomerContacts Changes to this property will trigger replacement. List<string>
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
DisplayName Changes to this property will trigger replacement. string
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
MaintenanceWindows Changes to this property will trigger replacement. List<ExadataInfrastructureMaintenanceWindow>
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
Shape Changes to this property will trigger replacement. string
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
StorageCount Changes to this property will trigger replacement. int
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
Zones Changes to this property will trigger replacement. List<string>
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
ComputeCount Changes to this property will trigger replacement. int
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
CustomerContacts Changes to this property will trigger replacement. []string
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
DisplayName Changes to this property will trigger replacement. string
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
MaintenanceWindows Changes to this property will trigger replacement. []ExadataInfrastructureMaintenanceWindowArgs
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
Shape Changes to this property will trigger replacement. string
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
StorageCount Changes to this property will trigger replacement. int
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
Zones Changes to this property will trigger replacement. []string
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
computeCount Changes to this property will trigger replacement. Integer
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
customerContacts Changes to this property will trigger replacement. List<String>
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
displayName Changes to this property will trigger replacement. String
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenanceWindows Changes to this property will trigger replacement. List<ExadataInfrastructureMaintenanceWindow>
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape Changes to this property will trigger replacement. String
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storageCount Changes to this property will trigger replacement. Integer
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
zones Changes to this property will trigger replacement. List<String>
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
computeCount Changes to this property will trigger replacement. number
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
customerContacts Changes to this property will trigger replacement. string[]
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
displayName Changes to this property will trigger replacement. string
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenanceWindows Changes to this property will trigger replacement. ExadataInfrastructureMaintenanceWindow[]
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape Changes to this property will trigger replacement. string
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storageCount Changes to this property will trigger replacement. number
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
zones Changes to this property will trigger replacement. string[]
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
compute_count Changes to this property will trigger replacement. int
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
customer_contacts Changes to this property will trigger replacement. Sequence[str]
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
display_name Changes to this property will trigger replacement. str
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenance_windows Changes to this property will trigger replacement. Sequence[ExadataInfrastructureMaintenanceWindowArgs]
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape Changes to this property will trigger replacement. str
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storage_count Changes to this property will trigger replacement. int
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
zones Changes to this property will trigger replacement. Sequence[str]
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.
computeCount Changes to this property will trigger replacement. Number
The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
customerContacts Changes to this property will trigger replacement. List<String>
The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
displayName Changes to this property will trigger replacement. String
The user-friendly name for the Cloud Exadata Infrastructure resource. The name does not need to be unique. Changing this forces a new Cloud Exadata Infrastructure to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
maintenanceWindows Changes to this property will trigger replacement. List<Property Map>
One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.
shape Changes to this property will trigger replacement. String
The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.
storageCount Changes to this property will trigger replacement. Number
The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.
tags Map<String>
A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.
zones Changes to this property will trigger replacement. List<String>
Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.

Supporting Types

ExadataInfrastructureMaintenanceWindow
, ExadataInfrastructureMaintenanceWindowArgs

DaysOfWeeks Changes to this property will trigger replacement. List<string>
Days during the week when maintenance should be performed. 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
HoursOfDays Changes to this property will trigger replacement. List<int>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Changing this forces a new Cloud Exadata Infrastructure to be created.
LeadTimeInWeeks Changes to this property will trigger replacement. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. Changing this forces a new Cloud Exadata Infrastructure to be created.
Months Changes to this property will trigger replacement. List<string>
Months during the year when maintenance should be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
PatchingMode Changes to this property will trigger replacement. string
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. Changing this forces a new Cloud Exadata Infrastructure to be created.
Preference Changes to this property will trigger replacement. string
The maintenance window scheduling preference. Changing this forces a new Cloud Exadata Infrastructure to be created.
WeeksOfMonths Changes to this property will trigger replacement. List<int>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
DaysOfWeeks Changes to this property will trigger replacement. []string
Days during the week when maintenance should be performed. 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
HoursOfDays Changes to this property will trigger replacement. []int
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Changing this forces a new Cloud Exadata Infrastructure to be created.
LeadTimeInWeeks Changes to this property will trigger replacement. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. Changing this forces a new Cloud Exadata Infrastructure to be created.
Months Changes to this property will trigger replacement. []string
Months during the year when maintenance should be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
PatchingMode Changes to this property will trigger replacement. string
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. Changing this forces a new Cloud Exadata Infrastructure to be created.
Preference Changes to this property will trigger replacement. string
The maintenance window scheduling preference. Changing this forces a new Cloud Exadata Infrastructure to be created.
WeeksOfMonths Changes to this property will trigger replacement. []int
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
daysOfWeeks Changes to this property will trigger replacement. List<String>
Days during the week when maintenance should be performed. 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
hoursOfDays Changes to this property will trigger replacement. List<Integer>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Changing this forces a new Cloud Exadata Infrastructure to be created.
leadTimeInWeeks Changes to this property will trigger replacement. Integer
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. Changing this forces a new Cloud Exadata Infrastructure to be created.
months Changes to this property will trigger replacement. List<String>
Months during the year when maintenance should be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
patchingMode Changes to this property will trigger replacement. String
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. Changing this forces a new Cloud Exadata Infrastructure to be created.
preference Changes to this property will trigger replacement. String
The maintenance window scheduling preference. Changing this forces a new Cloud Exadata Infrastructure to be created.
weeksOfMonths Changes to this property will trigger replacement. List<Integer>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
daysOfWeeks Changes to this property will trigger replacement. string[]
Days during the week when maintenance should be performed. 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
hoursOfDays Changes to this property will trigger replacement. number[]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Changing this forces a new Cloud Exadata Infrastructure to be created.
leadTimeInWeeks Changes to this property will trigger replacement. number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. Changing this forces a new Cloud Exadata Infrastructure to be created.
months Changes to this property will trigger replacement. string[]
Months during the year when maintenance should be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
patchingMode Changes to this property will trigger replacement. string
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. Changing this forces a new Cloud Exadata Infrastructure to be created.
preference Changes to this property will trigger replacement. string
The maintenance window scheduling preference. Changing this forces a new Cloud Exadata Infrastructure to be created.
weeksOfMonths Changes to this property will trigger replacement. number[]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
days_of_weeks Changes to this property will trigger replacement. Sequence[str]
Days during the week when maintenance should be performed. 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
hours_of_days Changes to this property will trigger replacement. Sequence[int]
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Changing this forces a new Cloud Exadata Infrastructure to be created.
lead_time_in_weeks Changes to this property will trigger replacement. int
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. Changing this forces a new Cloud Exadata Infrastructure to be created.
months Changes to this property will trigger replacement. Sequence[str]
Months during the year when maintenance should be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
patching_mode Changes to this property will trigger replacement. str
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. Changing this forces a new Cloud Exadata Infrastructure to be created.
preference Changes to this property will trigger replacement. str
The maintenance window scheduling preference. Changing this forces a new Cloud Exadata Infrastructure to be created.
weeks_of_months Changes to this property will trigger replacement. Sequence[int]
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
daysOfWeeks Changes to this property will trigger replacement. List<String>
Days during the week when maintenance should be performed. 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. Changing this forces a new Cloud Exadata Infrastructure to be created.
hoursOfDays Changes to this property will trigger replacement. List<Number>
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Changing this forces a new Cloud Exadata Infrastructure to be created.
leadTimeInWeeks Changes to this property will trigger replacement. Number
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. Changing this forces a new Cloud Exadata Infrastructure to be created.
months Changes to this property will trigger replacement. List<String>
Months during the year when maintenance should be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.
patchingMode Changes to this property will trigger replacement. String
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. Changing this forces a new Cloud Exadata Infrastructure to be created.
preference Changes to this property will trigger replacement. String
The maintenance window scheduling preference. Changing this forces a new Cloud Exadata Infrastructure to be created.
weeksOfMonths Changes to this property will trigger replacement. List<Number>
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. Changing this forces a new Cloud Exadata Infrastructure to be created.

Import

Cloud Exadata Infrastructures can be imported using the resource id, e.g.

$ pulumi import azure:oracle/exadataInfrastructure:ExadataInfrastructure example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup/providers/Oracle.Database/cloudExadataInfrastructures/cloudExadataInfrastructures1
Copy

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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.