1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. ExternalExadataInfrastructure
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DatabaseManagement.ExternalExadataInfrastructure

Explore with Pulumi AI

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

Creates an Oracle Cloud Infrastructure resource for the Exadata infrastructure and enables the Monitoring service for the Exadata infrastructure. The following resource/subresources are created: Infrastructure Storage server connectors Storage servers Storage grids

Example Usage

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

const testExternalExadataInfrastructure = new oci.databasemanagement.ExternalExadataInfrastructure("test_external_exadata_infrastructure", {
    compartmentId: compartmentId,
    dbSystemIds: externalExadataInfrastructureDbSystemIds,
    displayName: externalExadataInfrastructureDisplayName,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    discoveryKey: externalExadataInfrastructureDiscoveryKey,
    freeformTags: {
        Department: "Finance",
    },
    licenseModel: externalExadataInfrastructureLicenseModel,
    storageServerNames: externalExadataInfrastructureStorageServerNames,
});
Copy
import pulumi
import pulumi_oci as oci

test_external_exadata_infrastructure = oci.database_management.ExternalExadataInfrastructure("test_external_exadata_infrastructure",
    compartment_id=compartment_id,
    db_system_ids=external_exadata_infrastructure_db_system_ids,
    display_name=external_exadata_infrastructure_display_name,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    discovery_key=external_exadata_infrastructure_discovery_key,
    freeform_tags={
        "Department": "Finance",
    },
    license_model=external_exadata_infrastructure_license_model,
    storage_server_names=external_exadata_infrastructure_storage_server_names)
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.NewExternalExadataInfrastructure(ctx, "test_external_exadata_infrastructure", &databasemanagement.ExternalExadataInfrastructureArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DbSystemIds:   pulumi.Any(externalExadataInfrastructureDbSystemIds),
			DisplayName:   pulumi.Any(externalExadataInfrastructureDisplayName),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			DiscoveryKey: pulumi.Any(externalExadataInfrastructureDiscoveryKey),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			LicenseModel:       pulumi.Any(externalExadataInfrastructureLicenseModel),
			StorageServerNames: pulumi.Any(externalExadataInfrastructureStorageServerNames),
		})
		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 testExternalExadataInfrastructure = new Oci.DatabaseManagement.ExternalExadataInfrastructure("test_external_exadata_infrastructure", new()
    {
        CompartmentId = compartmentId,
        DbSystemIds = externalExadataInfrastructureDbSystemIds,
        DisplayName = externalExadataInfrastructureDisplayName,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        DiscoveryKey = externalExadataInfrastructureDiscoveryKey,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        LicenseModel = externalExadataInfrastructureLicenseModel,
        StorageServerNames = externalExadataInfrastructureStorageServerNames,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.ExternalExadataInfrastructure;
import com.pulumi.oci.DatabaseManagement.ExternalExadataInfrastructureArgs;
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 testExternalExadataInfrastructure = new ExternalExadataInfrastructure("testExternalExadataInfrastructure", ExternalExadataInfrastructureArgs.builder()
            .compartmentId(compartmentId)
            .dbSystemIds(externalExadataInfrastructureDbSystemIds)
            .displayName(externalExadataInfrastructureDisplayName)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .discoveryKey(externalExadataInfrastructureDiscoveryKey)
            .freeformTags(Map.of("Department", "Finance"))
            .licenseModel(externalExadataInfrastructureLicenseModel)
            .storageServerNames(externalExadataInfrastructureStorageServerNames)
            .build());

    }
}
Copy
resources:
  testExternalExadataInfrastructure:
    type: oci:DatabaseManagement:ExternalExadataInfrastructure
    name: test_external_exadata_infrastructure
    properties:
      compartmentId: ${compartmentId}
      dbSystemIds: ${externalExadataInfrastructureDbSystemIds}
      displayName: ${externalExadataInfrastructureDisplayName}
      definedTags:
        Operations.CostCenter: '42'
      discoveryKey: ${externalExadataInfrastructureDiscoveryKey}
      freeformTags:
        Department: Finance
      licenseModel: ${externalExadataInfrastructureLicenseModel}
      storageServerNames: ${externalExadataInfrastructureStorageServerNames}
Copy

Create ExternalExadataInfrastructure Resource

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

Constructor syntax

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

@overload
def ExternalExadataInfrastructure(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  compartment_id: Optional[str] = None,
                                  db_system_ids: Optional[Sequence[str]] = None,
                                  display_name: Optional[str] = None,
                                  defined_tags: Optional[Mapping[str, str]] = None,
                                  discovery_key: Optional[str] = None,
                                  freeform_tags: Optional[Mapping[str, str]] = None,
                                  license_model: Optional[str] = None,
                                  storage_server_names: Optional[Sequence[str]] = None)
func NewExternalExadataInfrastructure(ctx *Context, name string, args ExternalExadataInfrastructureArgs, opts ...ResourceOption) (*ExternalExadataInfrastructure, error)
public ExternalExadataInfrastructure(string name, ExternalExadataInfrastructureArgs args, CustomResourceOptions? opts = null)
public ExternalExadataInfrastructure(String name, ExternalExadataInfrastructureArgs args)
public ExternalExadataInfrastructure(String name, ExternalExadataInfrastructureArgs args, CustomResourceOptions options)
type: oci:DatabaseManagement:ExternalExadataInfrastructure
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. ExternalExadataInfrastructureArgs
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. ExternalExadataInfrastructureArgs
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. ExternalExadataInfrastructureArgs
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. ExternalExadataInfrastructureArgs
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. ExternalExadataInfrastructureArgs
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 externalExadataInfrastructureResource = new Oci.DatabaseManagement.ExternalExadataInfrastructure("externalExadataInfrastructureResource", new()
{
    CompartmentId = "string",
    DbSystemIds = new[]
    {
        "string",
    },
    DisplayName = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DiscoveryKey = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    LicenseModel = "string",
    StorageServerNames = new[]
    {
        "string",
    },
});
Copy
example, err := databasemanagement.NewExternalExadataInfrastructure(ctx, "externalExadataInfrastructureResource", &databasemanagement.ExternalExadataInfrastructureArgs{
	CompartmentId: pulumi.String("string"),
	DbSystemIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DiscoveryKey: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	LicenseModel: pulumi.String("string"),
	StorageServerNames: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var externalExadataInfrastructureResource = new ExternalExadataInfrastructure("externalExadataInfrastructureResource", ExternalExadataInfrastructureArgs.builder()
    .compartmentId("string")
    .dbSystemIds("string")
    .displayName("string")
    .definedTags(Map.of("string", "string"))
    .discoveryKey("string")
    .freeformTags(Map.of("string", "string"))
    .licenseModel("string")
    .storageServerNames("string")
    .build());
Copy
external_exadata_infrastructure_resource = oci.database_management.ExternalExadataInfrastructure("externalExadataInfrastructureResource",
    compartment_id="string",
    db_system_ids=["string"],
    display_name="string",
    defined_tags={
        "string": "string",
    },
    discovery_key="string",
    freeform_tags={
        "string": "string",
    },
    license_model="string",
    storage_server_names=["string"])
Copy
const externalExadataInfrastructureResource = new oci.databasemanagement.ExternalExadataInfrastructure("externalExadataInfrastructureResource", {
    compartmentId: "string",
    dbSystemIds: ["string"],
    displayName: "string",
    definedTags: {
        string: "string",
    },
    discoveryKey: "string",
    freeformTags: {
        string: "string",
    },
    licenseModel: "string",
    storageServerNames: ["string"],
});
Copy
type: oci:DatabaseManagement:ExternalExadataInfrastructure
properties:
    compartmentId: string
    dbSystemIds:
        - string
    definedTags:
        string: string
    discoveryKey: string
    displayName: string
    freeformTags:
        string: string
    licenseModel: string
    storageServerNames:
        - string
Copy

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

CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DbSystemIds This property is required. List<string>
(Updatable) The list of DB systems in the Exadata infrastructure.
DisplayName This property is required. string
(Updatable) The name of the Exadata infrastructure.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DiscoveryKey string
(Updatable) The unique key of the discovery request.
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
LicenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
StorageServerNames List<string>

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
DbSystemIds This property is required. []string
(Updatable) The list of DB systems in the Exadata infrastructure.
DisplayName This property is required. string
(Updatable) The name of the Exadata infrastructure.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DiscoveryKey string
(Updatable) The unique key of the discovery request.
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
LicenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
StorageServerNames []string

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

compartmentId This property is required. String
(Updatable) The OCID of the compartment.
dbSystemIds This property is required. List<String>
(Updatable) The list of DB systems in the Exadata infrastructure.
displayName This property is required. String
(Updatable) The name of the Exadata infrastructure.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveryKey String
(Updatable) The unique key of the discovery request.
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
licenseModel String
(Updatable) The Oracle license model that applies to the database management resources.
storageServerNames List<String>

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

compartmentId This property is required. string
(Updatable) The OCID of the compartment.
dbSystemIds This property is required. string[]
(Updatable) The list of DB systems in the Exadata infrastructure.
displayName This property is required. string
(Updatable) The name of the Exadata infrastructure.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveryKey string
(Updatable) The unique key of the discovery request.
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
licenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
storageServerNames string[]

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

compartment_id This property is required. str
(Updatable) The OCID of the compartment.
db_system_ids This property is required. Sequence[str]
(Updatable) The list of DB systems in the Exadata infrastructure.
display_name This property is required. str
(Updatable) The name of the Exadata infrastructure.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discovery_key str
(Updatable) The unique key of the discovery request.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
license_model str
(Updatable) The Oracle license model that applies to the database management resources.
storage_server_names Sequence[str]

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

compartmentId This property is required. String
(Updatable) The OCID of the compartment.
dbSystemIds This property is required. List<String>
(Updatable) The list of DB systems in the Exadata infrastructure.
displayName This property is required. String
(Updatable) The name of the Exadata infrastructure.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveryKey String
(Updatable) The unique key of the discovery request.
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
licenseModel String
(Updatable) The Oracle license model that applies to the database management resources.
storageServerNames List<String>

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

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

AdditionalDetails Dictionary<string, string>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
DatabaseCompartments List<string>
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
DatabaseSystems List<ExternalExadataInfrastructureDatabaseSystem>
A list of DB systems.
Id string
The provider-assigned unique ID for this managed resource.
InternalId string
The internal ID of the Exadata resource.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
RackSize string
The rack size of the Exadata infrastructure.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
StorageGrids List<ExternalExadataInfrastructureStorageGrid>
The Exadata storage server grid of the Exadata infrastructure.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
AdditionalDetails map[string]string
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
DatabaseCompartments []string
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
DatabaseSystems []ExternalExadataInfrastructureDatabaseSystem
A list of DB systems.
Id string
The provider-assigned unique ID for this managed resource.
InternalId string
The internal ID of the Exadata resource.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
RackSize string
The rack size of the Exadata infrastructure.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
StorageGrids []ExternalExadataInfrastructureStorageGrid
The Exadata storage server grid of the Exadata infrastructure.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
additionalDetails Map<String,String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
databaseCompartments List<String>
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
databaseSystems List<ExternalExadataInfrastructureDatabaseSystem>
A list of DB systems.
id String
The provider-assigned unique ID for this managed resource.
internalId String
The internal ID of the Exadata resource.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
rackSize String
The rack size of the Exadata infrastructure.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
storageGrids List<ExternalExadataInfrastructureStorageGrid>
The Exadata storage server grid of the Exadata infrastructure.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.
additionalDetails {[key: string]: string}
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
databaseCompartments string[]
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
databaseSystems ExternalExadataInfrastructureDatabaseSystem[]
A list of DB systems.
id string
The provider-assigned unique ID for this managed resource.
internalId string
The internal ID of the Exadata resource.
lifecycleDetails string
The details of the lifecycle state of the Exadata resource.
rackSize string
The rack size of the Exadata infrastructure.
state string
The current lifecycle state of the database resource.
status string
The status of the Exadata resource.
storageGrids ExternalExadataInfrastructureStorageGrid[]
The Exadata storage server grid of the Exadata infrastructure.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The timestamp of the creation of the Exadata resource.
timeUpdated string
The timestamp of the last update of the Exadata resource.
version string
The version of the Exadata resource.
additional_details Mapping[str, str]
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
database_compartments Sequence[str]
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
database_systems Sequence[databasemanagement.ExternalExadataInfrastructureDatabaseSystem]
A list of DB systems.
id str
The provider-assigned unique ID for this managed resource.
internal_id str
The internal ID of the Exadata resource.
lifecycle_details str
The details of the lifecycle state of the Exadata resource.
rack_size str
The rack size of the Exadata infrastructure.
state str
The current lifecycle state of the database resource.
status str
The status of the Exadata resource.
storage_grids Sequence[databasemanagement.ExternalExadataInfrastructureStorageGrid]
The Exadata storage server grid of the Exadata infrastructure.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The timestamp of the creation of the Exadata resource.
time_updated str
The timestamp of the last update of the Exadata resource.
version str
The version of the Exadata resource.
additionalDetails Map<String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
databaseCompartments List<String>
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
databaseSystems List<Property Map>
A list of DB systems.
id String
The provider-assigned unique ID for this managed resource.
internalId String
The internal ID of the Exadata resource.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
rackSize String
The rack size of the Exadata infrastructure.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
storageGrids List<Property Map>
The Exadata storage server grid of the Exadata infrastructure.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.

Look up Existing ExternalExadataInfrastructure Resource

Get an existing ExternalExadataInfrastructure 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?: ExternalExadataInfrastructureState, opts?: CustomResourceOptions): ExternalExadataInfrastructure
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        additional_details: Optional[Mapping[str, str]] = None,
        compartment_id: Optional[str] = None,
        database_compartments: Optional[Sequence[str]] = None,
        database_systems: Optional[Sequence[_databasemanagement.ExternalExadataInfrastructureDatabaseSystemArgs]] = None,
        db_system_ids: Optional[Sequence[str]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        discovery_key: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        internal_id: Optional[str] = None,
        license_model: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        rack_size: Optional[str] = None,
        state: Optional[str] = None,
        status: Optional[str] = None,
        storage_grids: Optional[Sequence[_databasemanagement.ExternalExadataInfrastructureStorageGridArgs]] = None,
        storage_server_names: Optional[Sequence[str]] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        version: Optional[str] = None) -> ExternalExadataInfrastructure
func GetExternalExadataInfrastructure(ctx *Context, name string, id IDInput, state *ExternalExadataInfrastructureState, opts ...ResourceOption) (*ExternalExadataInfrastructure, error)
public static ExternalExadataInfrastructure Get(string name, Input<string> id, ExternalExadataInfrastructureState? state, CustomResourceOptions? opts = null)
public static ExternalExadataInfrastructure get(String name, Output<String> id, ExternalExadataInfrastructureState state, CustomResourceOptions options)
resources:  _:    type: oci:DatabaseManagement:ExternalExadataInfrastructure    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:
AdditionalDetails Dictionary<string, string>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
CompartmentId string
(Updatable) The OCID of the compartment.
DatabaseCompartments List<string>
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
DatabaseSystems List<ExternalExadataInfrastructureDatabaseSystem>
A list of DB systems.
DbSystemIds List<string>
(Updatable) The list of DB systems in the Exadata infrastructure.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DiscoveryKey string
(Updatable) The unique key of the discovery request.
DisplayName string
(Updatable) The name of the Exadata infrastructure.
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
InternalId string
The internal ID of the Exadata resource.
LicenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
RackSize string
The rack size of the Exadata infrastructure.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
StorageGrids List<ExternalExadataInfrastructureStorageGrid>
The Exadata storage server grid of the Exadata infrastructure.
StorageServerNames List<string>

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
AdditionalDetails map[string]string
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
CompartmentId string
(Updatable) The OCID of the compartment.
DatabaseCompartments []string
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
DatabaseSystems []ExternalExadataInfrastructureDatabaseSystemArgs
A list of DB systems.
DbSystemIds []string
(Updatable) The list of DB systems in the Exadata infrastructure.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DiscoveryKey string
(Updatable) The unique key of the discovery request.
DisplayName string
(Updatable) The name of the Exadata infrastructure.
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
InternalId string
The internal ID of the Exadata resource.
LicenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
RackSize string
The rack size of the Exadata infrastructure.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
StorageGrids []ExternalExadataInfrastructureStorageGridArgs
The Exadata storage server grid of the Exadata infrastructure.
StorageServerNames []string

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
additionalDetails Map<String,String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartmentId String
(Updatable) The OCID of the compartment.
databaseCompartments List<String>
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
databaseSystems List<ExternalExadataInfrastructureDatabaseSystem>
A list of DB systems.
dbSystemIds List<String>
(Updatable) The list of DB systems in the Exadata infrastructure.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveryKey String
(Updatable) The unique key of the discovery request.
displayName String
(Updatable) The name of the Exadata infrastructure.
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
internalId String
The internal ID of the Exadata resource.
licenseModel String
(Updatable) The Oracle license model that applies to the database management resources.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
rackSize String
The rack size of the Exadata infrastructure.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
storageGrids List<ExternalExadataInfrastructureStorageGrid>
The Exadata storage server grid of the Exadata infrastructure.
storageServerNames List<String>

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.
additionalDetails {[key: string]: string}
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartmentId string
(Updatable) The OCID of the compartment.
databaseCompartments string[]
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
databaseSystems ExternalExadataInfrastructureDatabaseSystem[]
A list of DB systems.
dbSystemIds string[]
(Updatable) The list of DB systems in the Exadata infrastructure.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveryKey string
(Updatable) The unique key of the discovery request.
displayName string
(Updatable) The name of the Exadata infrastructure.
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
internalId string
The internal ID of the Exadata resource.
licenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
lifecycleDetails string
The details of the lifecycle state of the Exadata resource.
rackSize string
The rack size of the Exadata infrastructure.
state string
The current lifecycle state of the database resource.
status string
The status of the Exadata resource.
storageGrids ExternalExadataInfrastructureStorageGrid[]
The Exadata storage server grid of the Exadata infrastructure.
storageServerNames string[]

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The timestamp of the creation of the Exadata resource.
timeUpdated string
The timestamp of the last update of the Exadata resource.
version string
The version of the Exadata resource.
additional_details Mapping[str, str]
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartment_id str
(Updatable) The OCID of the compartment.
database_compartments Sequence[str]
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
database_systems Sequence[databasemanagement.ExternalExadataInfrastructureDatabaseSystemArgs]
A list of DB systems.
db_system_ids Sequence[str]
(Updatable) The list of DB systems in the Exadata infrastructure.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discovery_key str
(Updatable) The unique key of the discovery request.
display_name str
(Updatable) The name of the Exadata infrastructure.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
internal_id str
The internal ID of the Exadata resource.
license_model str
(Updatable) The Oracle license model that applies to the database management resources.
lifecycle_details str
The details of the lifecycle state of the Exadata resource.
rack_size str
The rack size of the Exadata infrastructure.
state str
The current lifecycle state of the database resource.
status str
The status of the Exadata resource.
storage_grids Sequence[databasemanagement.ExternalExadataInfrastructureStorageGridArgs]
The Exadata storage server grid of the Exadata infrastructure.
storage_server_names Sequence[str]

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The timestamp of the creation of the Exadata resource.
time_updated str
The timestamp of the last update of the Exadata resource.
version str
The version of the Exadata resource.
additionalDetails Map<String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartmentId String
(Updatable) The OCID of the compartment.
databaseCompartments List<String>
The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
databaseSystems List<Property Map>
A list of DB systems.
dbSystemIds List<String>
(Updatable) The list of DB systems in the Exadata infrastructure.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveryKey String
(Updatable) The unique key of the discovery request.
displayName String
(Updatable) The name of the Exadata infrastructure.
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
internalId String
The internal ID of the Exadata resource.
licenseModel String
(Updatable) The Oracle license model that applies to the database management resources.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
rackSize String
The rack size of the Exadata infrastructure.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
storageGrids List<Property Map>
The Exadata storage server grid of the Exadata infrastructure.
storageServerNames List<String>

(Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.

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

systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.

Supporting Types

ExternalExadataInfrastructureDatabaseSystem
, ExternalExadataInfrastructureDatabaseSystemArgs

AdditionalDetails Dictionary<string, string>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
CompartmentId string
(Updatable) The OCID of the compartment.
DisplayName string
(Updatable) The name of the Exadata infrastructure.
Id string
The OCID of the Exadata resource.
InternalId string
The internal ID of the Exadata resource.
LicenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
AdditionalDetails map[string]string
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
CompartmentId string
(Updatable) The OCID of the compartment.
DisplayName string
(Updatable) The name of the Exadata infrastructure.
Id string
The OCID of the Exadata resource.
InternalId string
The internal ID of the Exadata resource.
LicenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
additionalDetails Map<String,String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartmentId String
(Updatable) The OCID of the compartment.
displayName String
(Updatable) The name of the Exadata infrastructure.
id String
The OCID of the Exadata resource.
internalId String
The internal ID of the Exadata resource.
licenseModel String
(Updatable) The Oracle license model that applies to the database management resources.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.
additionalDetails {[key: string]: string}
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartmentId string
(Updatable) The OCID of the compartment.
displayName string
(Updatable) The name of the Exadata infrastructure.
id string
The OCID of the Exadata resource.
internalId string
The internal ID of the Exadata resource.
licenseModel string
(Updatable) The Oracle license model that applies to the database management resources.
lifecycleDetails string
The details of the lifecycle state of the Exadata resource.
state string
The current lifecycle state of the database resource.
status string
The status of the Exadata resource.
timeCreated string
The timestamp of the creation of the Exadata resource.
timeUpdated string
The timestamp of the last update of the Exadata resource.
version string
The version of the Exadata resource.
additional_details Mapping[str, str]
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartment_id str
(Updatable) The OCID of the compartment.
display_name str
(Updatable) The name of the Exadata infrastructure.
id str
The OCID of the Exadata resource.
internal_id str
The internal ID of the Exadata resource.
license_model str
(Updatable) The Oracle license model that applies to the database management resources.
lifecycle_details str
The details of the lifecycle state of the Exadata resource.
state str
The current lifecycle state of the database resource.
status str
The status of the Exadata resource.
time_created str
The timestamp of the creation of the Exadata resource.
time_updated str
The timestamp of the last update of the Exadata resource.
version str
The version of the Exadata resource.
additionalDetails Map<String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
compartmentId String
(Updatable) The OCID of the compartment.
displayName String
(Updatable) The name of the Exadata infrastructure.
id String
The OCID of the Exadata resource.
internalId String
The internal ID of the Exadata resource.
licenseModel String
(Updatable) The Oracle license model that applies to the database management resources.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.

ExternalExadataInfrastructureStorageGrid
, ExternalExadataInfrastructureStorageGridArgs

AdditionalDetails Dictionary<string, string>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
DisplayName string
(Updatable) The name of the Exadata infrastructure.
Id string
The OCID of the Exadata resource.
InternalId string
The internal ID of the Exadata resource.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
ServerCount double
The number of Exadata storage servers in the Exadata infrastructure.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
AdditionalDetails map[string]string
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
DisplayName string
(Updatable) The name of the Exadata infrastructure.
Id string
The OCID of the Exadata resource.
InternalId string
The internal ID of the Exadata resource.
LifecycleDetails string
The details of the lifecycle state of the Exadata resource.
ServerCount float64
The number of Exadata storage servers in the Exadata infrastructure.
State string
The current lifecycle state of the database resource.
Status string
The status of the Exadata resource.
TimeCreated string
The timestamp of the creation of the Exadata resource.
TimeUpdated string
The timestamp of the last update of the Exadata resource.
Version string
The version of the Exadata resource.
additionalDetails Map<String,String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
displayName String
(Updatable) The name of the Exadata infrastructure.
id String
The OCID of the Exadata resource.
internalId String
The internal ID of the Exadata resource.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
serverCount Double
The number of Exadata storage servers in the Exadata infrastructure.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.
additionalDetails {[key: string]: string}
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
displayName string
(Updatable) The name of the Exadata infrastructure.
id string
The OCID of the Exadata resource.
internalId string
The internal ID of the Exadata resource.
lifecycleDetails string
The details of the lifecycle state of the Exadata resource.
serverCount number
The number of Exadata storage servers in the Exadata infrastructure.
state string
The current lifecycle state of the database resource.
status string
The status of the Exadata resource.
timeCreated string
The timestamp of the creation of the Exadata resource.
timeUpdated string
The timestamp of the last update of the Exadata resource.
version string
The version of the Exadata resource.
additional_details Mapping[str, str]
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
display_name str
(Updatable) The name of the Exadata infrastructure.
id str
The OCID of the Exadata resource.
internal_id str
The internal ID of the Exadata resource.
lifecycle_details str
The details of the lifecycle state of the Exadata resource.
server_count float
The number of Exadata storage servers in the Exadata infrastructure.
state str
The current lifecycle state of the database resource.
status str
The status of the Exadata resource.
time_created str
The timestamp of the creation of the Exadata resource.
time_updated str
The timestamp of the last update of the Exadata resource.
version str
The version of the Exadata resource.
additionalDetails Map<String>
The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
displayName String
(Updatable) The name of the Exadata infrastructure.
id String
The OCID of the Exadata resource.
internalId String
The internal ID of the Exadata resource.
lifecycleDetails String
The details of the lifecycle state of the Exadata resource.
serverCount Number
The number of Exadata storage servers in the Exadata infrastructure.
state String
The current lifecycle state of the database resource.
status String
The status of the Exadata resource.
timeCreated String
The timestamp of the creation of the Exadata resource.
timeUpdated String
The timestamp of the last update of the Exadata resource.
version String
The version of the Exadata resource.

Import

ExternalExadataInfrastructures can be imported using the id, e.g.

$ pulumi import oci:DatabaseManagement/externalExadataInfrastructure:ExternalExadataInfrastructure test_external_exadata_infrastructure "id"
Copy

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

Package Details

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