1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. CloudExadataInfrastructureManagedexadataManagement
Viewing docs for Oracle Cloud Infrastructure v4.3.0
published on Thursday, Mar 19, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.3.0
published on Thursday, Mar 19, 2026 by Pulumi

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

    Enables Database Management for the Exadata infrastructure specified by exadataInfrastructureId. 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 testCloudExadataInfrastructureManagedexadataManagement = new oci.databasemanagement.CloudExadataInfrastructureManagedexadataManagement("test_cloud_exadata_infrastructure_managedexadata_management", {
        cloudExadataInfrastructureId: testCloudExadataInfrastructure.id,
        enableManagedexadata: enableManagedexadata,
        licenseModel: cloudExadataInfrastructureManagedexadataManagementLicenseModel,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_exadata_infrastructure_managedexadata_management = oci.databasemanagement.CloudExadataInfrastructureManagedexadataManagement("test_cloud_exadata_infrastructure_managedexadata_management",
        cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
        enable_managedexadata=enable_managedexadata,
        license_model=cloud_exadata_infrastructure_managedexadata_management_license_model)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/databasemanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasemanagement.NewCloudExadataInfrastructureManagedexadataManagement(ctx, "test_cloud_exadata_infrastructure_managedexadata_management", &databasemanagement.CloudExadataInfrastructureManagedexadataManagementArgs{
    			CloudExadataInfrastructureId: pulumi.Any(testCloudExadataInfrastructure.Id),
    			EnableManagedexadata:         pulumi.Any(enableManagedexadata),
    			LicenseModel:                 pulumi.Any(cloudExadataInfrastructureManagedexadataManagementLicenseModel),
    		})
    		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 testCloudExadataInfrastructureManagedexadataManagement = new Oci.DatabaseManagement.CloudExadataInfrastructureManagedexadataManagement("test_cloud_exadata_infrastructure_managedexadata_management", new()
        {
            CloudExadataInfrastructureId = testCloudExadataInfrastructure.Id,
            EnableManagedexadata = enableManagedexadata,
            LicenseModel = cloudExadataInfrastructureManagedexadataManagementLicenseModel,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.CloudExadataInfrastructureManagedexadataManagement;
    import com.pulumi.oci.DatabaseManagement.CloudExadataInfrastructureManagedexadataManagementArgs;
    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 testCloudExadataInfrastructureManagedexadataManagement = new CloudExadataInfrastructureManagedexadataManagement("testCloudExadataInfrastructureManagedexadataManagement", CloudExadataInfrastructureManagedexadataManagementArgs.builder()
                .cloudExadataInfrastructureId(testCloudExadataInfrastructure.id())
                .enableManagedexadata(enableManagedexadata)
                .licenseModel(cloudExadataInfrastructureManagedexadataManagementLicenseModel)
                .build());
    
        }
    }
    
    resources:
      testCloudExadataInfrastructureManagedexadataManagement:
        type: oci:DatabaseManagement:CloudExadataInfrastructureManagedexadataManagement
        name: test_cloud_exadata_infrastructure_managedexadata_management
        properties:
          cloudExadataInfrastructureId: ${testCloudExadataInfrastructure.id}
          enableManagedexadata: ${enableManagedexadata}
          licenseModel: ${cloudExadataInfrastructureManagedexadataManagementLicenseModel}
    

    Create CloudExadataInfrastructureManagedexadataManagement Resource

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

    Constructor syntax

    new CloudExadataInfrastructureManagedexadataManagement(name: string, args: CloudExadataInfrastructureManagedexadataManagementArgs, opts?: CustomResourceOptions);
    @overload
    def CloudExadataInfrastructureManagedexadataManagement(resource_name: str,
                                                           args: CloudExadataInfrastructureManagedexadataManagementArgs,
                                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudExadataInfrastructureManagedexadataManagement(resource_name: str,
                                                           opts: Optional[ResourceOptions] = None,
                                                           cloud_exadata_infrastructure_id: Optional[str] = None,
                                                           enable_managedexadata: Optional[bool] = None,
                                                           license_model: Optional[str] = None)
    func NewCloudExadataInfrastructureManagedexadataManagement(ctx *Context, name string, args CloudExadataInfrastructureManagedexadataManagementArgs, opts ...ResourceOption) (*CloudExadataInfrastructureManagedexadataManagement, error)
    public CloudExadataInfrastructureManagedexadataManagement(string name, CloudExadataInfrastructureManagedexadataManagementArgs args, CustomResourceOptions? opts = null)
    public CloudExadataInfrastructureManagedexadataManagement(String name, CloudExadataInfrastructureManagedexadataManagementArgs args)
    public CloudExadataInfrastructureManagedexadataManagement(String name, CloudExadataInfrastructureManagedexadataManagementArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseManagement:CloudExadataInfrastructureManagedexadataManagement
    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 CloudExadataInfrastructureManagedexadataManagementArgs
    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 CloudExadataInfrastructureManagedexadataManagementArgs
    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 CloudExadataInfrastructureManagedexadataManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudExadataInfrastructureManagedexadataManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudExadataInfrastructureManagedexadataManagementArgs
    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 cloudExadataInfrastructureManagedexadataManagementResource = new Oci.DatabaseManagement.CloudExadataInfrastructureManagedexadataManagement("cloudExadataInfrastructureManagedexadataManagementResource", new()
    {
        CloudExadataInfrastructureId = "string",
        EnableManagedexadata = false,
        LicenseModel = "string",
    });
    
    example, err := databasemanagement.NewCloudExadataInfrastructureManagedexadataManagement(ctx, "cloudExadataInfrastructureManagedexadataManagementResource", &databasemanagement.CloudExadataInfrastructureManagedexadataManagementArgs{
    	CloudExadataInfrastructureId: pulumi.String("string"),
    	EnableManagedexadata:         pulumi.Bool(false),
    	LicenseModel:                 pulumi.String("string"),
    })
    
    var cloudExadataInfrastructureManagedexadataManagementResource = new CloudExadataInfrastructureManagedexadataManagement("cloudExadataInfrastructureManagedexadataManagementResource", CloudExadataInfrastructureManagedexadataManagementArgs.builder()
        .cloudExadataInfrastructureId("string")
        .enableManagedexadata(false)
        .licenseModel("string")
        .build());
    
    cloud_exadata_infrastructure_managedexadata_management_resource = oci.databasemanagement.CloudExadataInfrastructureManagedexadataManagement("cloudExadataInfrastructureManagedexadataManagementResource",
        cloud_exadata_infrastructure_id="string",
        enable_managedexadata=False,
        license_model="string")
    
    const cloudExadataInfrastructureManagedexadataManagementResource = new oci.databasemanagement.CloudExadataInfrastructureManagedexadataManagement("cloudExadataInfrastructureManagedexadataManagementResource", {
        cloudExadataInfrastructureId: "string",
        enableManagedexadata: false,
        licenseModel: "string",
    });
    
    type: oci:DatabaseManagement:CloudExadataInfrastructureManagedexadataManagement
    properties:
        cloudExadataInfrastructureId: string
        enableManagedexadata: false
        licenseModel: string
    

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

    CloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    EnableManagedexadata 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

    LicenseModel string
    The Oracle license model that applies to the database management resources.
    CloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    EnableManagedexadata 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

    LicenseModel string
    The Oracle license model that applies to the database management resources.
    cloudExadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    enableManagedexadata 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

    licenseModel String
    The Oracle license model that applies to the database management resources.
    cloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    enableManagedexadata 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

    licenseModel string
    The Oracle license model that applies to the database management resources.
    cloud_exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    enable_managedexadata 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

    license_model str
    The Oracle license model that applies to the database management resources.
    cloudExadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    enableManagedexadata 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

    licenseModel String
    The Oracle license model that applies to the database management resources.

    Outputs

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

    Get an existing CloudExadataInfrastructureManagedexadataManagement 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?: CloudExadataInfrastructureManagedexadataManagementState, opts?: CustomResourceOptions): CloudExadataInfrastructureManagedexadataManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud_exadata_infrastructure_id: Optional[str] = None,
            enable_managedexadata: Optional[bool] = None,
            license_model: Optional[str] = None) -> CloudExadataInfrastructureManagedexadataManagement
    func GetCloudExadataInfrastructureManagedexadataManagement(ctx *Context, name string, id IDInput, state *CloudExadataInfrastructureManagedexadataManagementState, opts ...ResourceOption) (*CloudExadataInfrastructureManagedexadataManagement, error)
    public static CloudExadataInfrastructureManagedexadataManagement Get(string name, Input<string> id, CloudExadataInfrastructureManagedexadataManagementState? state, CustomResourceOptions? opts = null)
    public static CloudExadataInfrastructureManagedexadataManagement get(String name, Output<String> id, CloudExadataInfrastructureManagedexadataManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:DatabaseManagement:CloudExadataInfrastructureManagedexadataManagement    get:      id: ${id}
    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:
    CloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    EnableManagedexadata 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

    LicenseModel string
    The Oracle license model that applies to the database management resources.
    CloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    EnableManagedexadata 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

    LicenseModel string
    The Oracle license model that applies to the database management resources.
    cloudExadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    enableManagedexadata 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

    licenseModel String
    The Oracle license model that applies to the database management resources.
    cloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    enableManagedexadata 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

    licenseModel string
    The Oracle license model that applies to the database management resources.
    cloud_exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    enable_managedexadata 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

    license_model str
    The Oracle license model that applies to the database management resources.
    cloudExadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    enableManagedexadata 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

    licenseModel String
    The Oracle license model that applies to the database management 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
    Viewing docs for Oracle Cloud Infrastructure v4.3.0
    published on Thursday, Mar 19, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.