1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. ExternalExadataInfrastructureExadataManagement
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.DatabaseManagement.ExternalExadataInfrastructureExadataManagement

Explore with Pulumi AI

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

Enables Database Management for the Exadata infrastructure specified by externalExadataInfrastructureId. It covers the following components:

  • Exadata infrastructure
  • Exadata storage grid
  • Exadata storage server

Example Usage

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

const testExternalExadataInfrastructureExadataManagement = new oci.databasemanagement.ExternalExadataInfrastructureExadataManagement("test_external_exadata_infrastructure_exadata_management", {
    externalExadataInfrastructureId: testExternalExadataInfrastructure.id,
    enableExadata: enableExadata,
    licenseModel: externalExadataInfrastructureExadataManagementLicenseModel,
});
Copy
import pulumi
import pulumi_oci as oci

test_external_exadata_infrastructure_exadata_management = oci.database_management.ExternalExadataInfrastructureExadataManagement("test_external_exadata_infrastructure_exadata_management",
    external_exadata_infrastructure_id=test_external_exadata_infrastructure["id"],
    enable_exadata=enable_exadata,
    license_model=external_exadata_infrastructure_exadata_management_license_model)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.NewExternalExadataInfrastructureExadataManagement(ctx, "test_external_exadata_infrastructure_exadata_management", &databasemanagement.ExternalExadataInfrastructureExadataManagementArgs{
			ExternalExadataInfrastructureId: pulumi.Any(testExternalExadataInfrastructure.Id),
			EnableExadata:                   pulumi.Any(enableExadata),
			LicenseModel:                    pulumi.Any(externalExadataInfrastructureExadataManagementLicenseModel),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExternalExadataInfrastructureExadataManagement = new Oci.DatabaseManagement.ExternalExadataInfrastructureExadataManagement("test_external_exadata_infrastructure_exadata_management", new()
    {
        ExternalExadataInfrastructureId = testExternalExadataInfrastructure.Id,
        EnableExadata = enableExadata,
        LicenseModel = externalExadataInfrastructureExadataManagementLicenseModel,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.ExternalExadataInfrastructureExadataManagement;
import com.pulumi.oci.DatabaseManagement.ExternalExadataInfrastructureExadataManagementArgs;
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 testExternalExadataInfrastructureExadataManagement = new ExternalExadataInfrastructureExadataManagement("testExternalExadataInfrastructureExadataManagement", ExternalExadataInfrastructureExadataManagementArgs.builder()
            .externalExadataInfrastructureId(testExternalExadataInfrastructure.id())
            .enableExadata(enableExadata)
            .licenseModel(externalExadataInfrastructureExadataManagementLicenseModel)
            .build());

    }
}
Copy
resources:
  testExternalExadataInfrastructureExadataManagement:
    type: oci:DatabaseManagement:ExternalExadataInfrastructureExadataManagement
    name: test_external_exadata_infrastructure_exadata_management
    properties:
      externalExadataInfrastructureId: ${testExternalExadataInfrastructure.id}
      enableExadata: ${enableExadata}
      licenseModel: ${externalExadataInfrastructureExadataManagementLicenseModel}
Copy

Create ExternalExadataInfrastructureExadataManagement Resource

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

Constructor syntax

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

@overload
def ExternalExadataInfrastructureExadataManagement(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   enable_exadata: Optional[bool] = None,
                                                   external_exadata_infrastructure_id: Optional[str] = None,
                                                   license_model: Optional[str] = None)
func NewExternalExadataInfrastructureExadataManagement(ctx *Context, name string, args ExternalExadataInfrastructureExadataManagementArgs, opts ...ResourceOption) (*ExternalExadataInfrastructureExadataManagement, error)
public ExternalExadataInfrastructureExadataManagement(string name, ExternalExadataInfrastructureExadataManagementArgs args, CustomResourceOptions? opts = null)
public ExternalExadataInfrastructureExadataManagement(String name, ExternalExadataInfrastructureExadataManagementArgs args)
public ExternalExadataInfrastructureExadataManagement(String name, ExternalExadataInfrastructureExadataManagementArgs args, CustomResourceOptions options)
type: oci:DatabaseManagement:ExternalExadataInfrastructureExadataManagement
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. ExternalExadataInfrastructureExadataManagementArgs
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. ExternalExadataInfrastructureExadataManagementArgs
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. ExternalExadataInfrastructureExadataManagementArgs
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. ExternalExadataInfrastructureExadataManagementArgs
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. ExternalExadataInfrastructureExadataManagementArgs
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 externalExadataInfrastructureExadataManagementResource = new Oci.DatabaseManagement.ExternalExadataInfrastructureExadataManagement("externalExadataInfrastructureExadataManagementResource", new()
{
    EnableExadata = false,
    ExternalExadataInfrastructureId = "string",
    LicenseModel = "string",
});
Copy
example, err := DatabaseManagement.NewExternalExadataInfrastructureExadataManagement(ctx, "externalExadataInfrastructureExadataManagementResource", &DatabaseManagement.ExternalExadataInfrastructureExadataManagementArgs{
	EnableExadata:                   pulumi.Bool(false),
	ExternalExadataInfrastructureId: pulumi.String("string"),
	LicenseModel:                    pulumi.String("string"),
})
Copy
var externalExadataInfrastructureExadataManagementResource = new ExternalExadataInfrastructureExadataManagement("externalExadataInfrastructureExadataManagementResource", ExternalExadataInfrastructureExadataManagementArgs.builder()
    .enableExadata(false)
    .externalExadataInfrastructureId("string")
    .licenseModel("string")
    .build());
Copy
external_exadata_infrastructure_exadata_management_resource = oci.database_management.ExternalExadataInfrastructureExadataManagement("externalExadataInfrastructureExadataManagementResource",
    enable_exadata=False,
    external_exadata_infrastructure_id="string",
    license_model="string")
Copy
const externalExadataInfrastructureExadataManagementResource = new oci.databasemanagement.ExternalExadataInfrastructureExadataManagement("externalExadataInfrastructureExadataManagementResource", {
    enableExadata: false,
    externalExadataInfrastructureId: "string",
    licenseModel: "string",
});
Copy
type: oci:DatabaseManagement:ExternalExadataInfrastructureExadataManagement
properties:
    enableExadata: false
    externalExadataInfrastructureId: string
    licenseModel: string
Copy

ExternalExadataInfrastructureExadataManagement 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 ExternalExadataInfrastructureExadataManagement resource accepts the following input properties:

EnableExadata This property is required. bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalExadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the Exadata infrastructure.
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model.
EnableExadata This property is required. bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalExadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the Exadata infrastructure.
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model.
enableExadata This property is required. Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalExadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the Exadata infrastructure.
licenseModel Changes to this property will trigger replacement. String
The Oracle license model.
enableExadata This property is required. boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalExadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the Exadata infrastructure.
licenseModel Changes to this property will trigger replacement. string
The Oracle license model.
enable_exadata This property is required. bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

external_exadata_infrastructure_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the Exadata infrastructure.
license_model Changes to this property will trigger replacement. str
The Oracle license model.
enableExadata This property is required. Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalExadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the Exadata infrastructure.
licenseModel Changes to this property will trigger replacement. String
The Oracle license model.

Outputs

All input properties are implicitly available as output properties. Additionally, the ExternalExadataInfrastructureExadataManagement 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 ExternalExadataInfrastructureExadataManagement Resource

Get an existing ExternalExadataInfrastructureExadataManagement 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?: ExternalExadataInfrastructureExadataManagementState, opts?: CustomResourceOptions): ExternalExadataInfrastructureExadataManagement
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        enable_exadata: Optional[bool] = None,
        external_exadata_infrastructure_id: Optional[str] = None,
        license_model: Optional[str] = None) -> ExternalExadataInfrastructureExadataManagement
func GetExternalExadataInfrastructureExadataManagement(ctx *Context, name string, id IDInput, state *ExternalExadataInfrastructureExadataManagementState, opts ...ResourceOption) (*ExternalExadataInfrastructureExadataManagement, error)
public static ExternalExadataInfrastructureExadataManagement Get(string name, Input<string> id, ExternalExadataInfrastructureExadataManagementState? state, CustomResourceOptions? opts = null)
public static ExternalExadataInfrastructureExadataManagement get(String name, Output<String> id, ExternalExadataInfrastructureExadataManagementState state, CustomResourceOptions options)
resources:  _:    type: oci:DatabaseManagement:ExternalExadataInfrastructureExadataManagement    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:
EnableExadata bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalExadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model.
EnableExadata bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

ExternalExadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
LicenseModel Changes to this property will trigger replacement. string
The Oracle license model.
enableExadata Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalExadataInfrastructureId Changes to this property will trigger replacement. String
The OCID of the Exadata infrastructure.
licenseModel Changes to this property will trigger replacement. String
The Oracle license model.
enableExadata boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalExadataInfrastructureId Changes to this property will trigger replacement. string
The OCID of the Exadata infrastructure.
licenseModel Changes to this property will trigger replacement. string
The Oracle license model.
enable_exadata bool

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

external_exadata_infrastructure_id Changes to this property will trigger replacement. str
The OCID of the Exadata infrastructure.
license_model Changes to this property will trigger replacement. str
The Oracle license model.
enableExadata Boolean

(Updatable) A required field when set to true calls enable action and when set to false calls disable action.

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

externalExadataInfrastructureId Changes to this property will trigger replacement. String
The OCID of the Exadata infrastructure.
licenseModel Changes to this property will trigger replacement. String
The Oracle license model.

Package Details

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