ExadataInfrastructure

class ExadataInfrastructure : KotlinCustomResource

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",
});
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")
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",
});
});
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
})
}
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());
}
}
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

API Providers

This resource uses the following Azure API Providers:

  • Oracle.Database: 2024-06-01

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

Properties

Link copied to clipboard
val computeCount: Output<Int>

The number of compute servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard

The email address used by Oracle to send notifications regarding databases and infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard
val displayName: Output<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.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>

The Azure Region where the Cloud Exadata Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard

One or more maintenance_window blocks as defined below. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard
val name: Output<String>

The name which should be used for this Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The name of the Resource Group where the ODB@A Infrastructure should exist. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard
val shape: Output<String>

The shape of the ODB@A infrastructure resource. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard
val storageCount: Output<Int>

The number of storage servers for the Cloud Exadata Infrastructure. Changing this forces a new Cloud Exadata Infrastructure to be created.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A mapping of tags which should be assigned to the Cloud Exadata Infrastructure.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val zones: Output<List<String>>

Cloud Exadata Infrastructure zones. Changing this forces a new Cloud Exadata Infrastructure to be created.