published on Thursday, Mar 19, 2026 by Pulumi
published on Thursday, Mar 19, 2026 by Pulumi
This resource provides the Cloud 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 testCloudExadataInfrastructure = new oci.databasemanagement.CloudExadataInfrastructure("test_cloud_exadata_infrastructure", {
compartmentId: compartmentId,
vmClusterIds: cloudExadataInfrastructureVmClusterIds,
definedTags: {
"Operations.CostCenter": "42",
},
discoveryKey: cloudExadataInfrastructureDiscoveryKey,
displayName: cloudExadataInfrastructureDisplayName,
freeformTags: {
Department: "Finance",
},
licenseModel: cloudExadataInfrastructureLicenseModel,
storageServerNames: cloudExadataInfrastructureStorageServerNames,
});
import pulumi
import pulumi_oci as oci
test_cloud_exadata_infrastructure = oci.databasemanagement.CloudExadataInfrastructure("test_cloud_exadata_infrastructure",
compartment_id=compartment_id,
vm_cluster_ids=cloud_exadata_infrastructure_vm_cluster_ids,
defined_tags={
"Operations.CostCenter": "42",
},
discovery_key=cloud_exadata_infrastructure_discovery_key,
display_name=cloud_exadata_infrastructure_display_name,
freeform_tags={
"Department": "Finance",
},
license_model=cloud_exadata_infrastructure_license_model,
storage_server_names=cloud_exadata_infrastructure_storage_server_names)
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.NewCloudExadataInfrastructure(ctx, "test_cloud_exadata_infrastructure", &databasemanagement.CloudExadataInfrastructureArgs{
CompartmentId: pulumi.Any(compartmentId),
VmClusterIds: pulumi.Any(cloudExadataInfrastructureVmClusterIds),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DiscoveryKey: pulumi.Any(cloudExadataInfrastructureDiscoveryKey),
DisplayName: pulumi.Any(cloudExadataInfrastructureDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
LicenseModel: pulumi.Any(cloudExadataInfrastructureLicenseModel),
StorageServerNames: pulumi.Any(cloudExadataInfrastructureStorageServerNames),
})
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 testCloudExadataInfrastructure = new Oci.DatabaseManagement.CloudExadataInfrastructure("test_cloud_exadata_infrastructure", new()
{
CompartmentId = compartmentId,
VmClusterIds = cloudExadataInfrastructureVmClusterIds,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DiscoveryKey = cloudExadataInfrastructureDiscoveryKey,
DisplayName = cloudExadataInfrastructureDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
LicenseModel = cloudExadataInfrastructureLicenseModel,
StorageServerNames = cloudExadataInfrastructureStorageServerNames,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.CloudExadataInfrastructure;
import com.pulumi.oci.DatabaseManagement.CloudExadataInfrastructureArgs;
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 testCloudExadataInfrastructure = new CloudExadataInfrastructure("testCloudExadataInfrastructure", CloudExadataInfrastructureArgs.builder()
.compartmentId(compartmentId)
.vmClusterIds(cloudExadataInfrastructureVmClusterIds)
.definedTags(Map.of("Operations.CostCenter", "42"))
.discoveryKey(cloudExadataInfrastructureDiscoveryKey)
.displayName(cloudExadataInfrastructureDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.licenseModel(cloudExadataInfrastructureLicenseModel)
.storageServerNames(cloudExadataInfrastructureStorageServerNames)
.build());
}
}
resources:
testCloudExadataInfrastructure:
type: oci:DatabaseManagement:CloudExadataInfrastructure
name: test_cloud_exadata_infrastructure
properties:
compartmentId: ${compartmentId}
vmClusterIds: ${cloudExadataInfrastructureVmClusterIds}
definedTags:
Operations.CostCenter: '42'
discoveryKey: ${cloudExadataInfrastructureDiscoveryKey}
displayName: ${cloudExadataInfrastructureDisplayName}
freeformTags:
Department: Finance
licenseModel: ${cloudExadataInfrastructureLicenseModel}
storageServerNames: ${cloudExadataInfrastructureStorageServerNames}
Create CloudExadataInfrastructure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudExadataInfrastructure(name: string, args: CloudExadataInfrastructureArgs, opts?: CustomResourceOptions);@overload
def CloudExadataInfrastructure(resource_name: str,
args: CloudExadataInfrastructureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudExadataInfrastructure(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
vm_cluster_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,
license_model: Optional[str] = None,
storage_server_names: Optional[Sequence[str]] = None)func NewCloudExadataInfrastructure(ctx *Context, name string, args CloudExadataInfrastructureArgs, opts ...ResourceOption) (*CloudExadataInfrastructure, error)public CloudExadataInfrastructure(string name, CloudExadataInfrastructureArgs args, CustomResourceOptions? opts = null)
public CloudExadataInfrastructure(String name, CloudExadataInfrastructureArgs args)
public CloudExadataInfrastructure(String name, CloudExadataInfrastructureArgs args, CustomResourceOptions options)
type: oci:DatabaseManagement:CloudExadataInfrastructure
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 CloudExadataInfrastructureArgs
- 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 CloudExadataInfrastructureArgs
- 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 CloudExadataInfrastructureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudExadataInfrastructureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudExadataInfrastructureArgs
- 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 ociCloudExadataInfrastructureResource = new Oci.DatabaseManagement.CloudExadataInfrastructure("ociCloudExadataInfrastructureResource", new()
{
CompartmentId = "string",
VmClusterIds = new[]
{
"string",
},
DefinedTags =
{
{ "string", "string" },
},
DiscoveryKey = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
LicenseModel = "string",
StorageServerNames = new[]
{
"string",
},
});
example, err := databasemanagement.NewCloudExadataInfrastructure(ctx, "ociCloudExadataInfrastructureResource", &databasemanagement.CloudExadataInfrastructureArgs{
CompartmentId: pulumi.String("string"),
VmClusterIds: pulumi.StringArray{
pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DiscoveryKey: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
LicenseModel: pulumi.String("string"),
StorageServerNames: pulumi.StringArray{
pulumi.String("string"),
},
})
var ociCloudExadataInfrastructureResource = new com.pulumi.oci.DatabaseManagement.CloudExadataInfrastructure("ociCloudExadataInfrastructureResource", com.pulumi.oci.DatabaseManagement.CloudExadataInfrastructureArgs.builder()
.compartmentId("string")
.vmClusterIds("string")
.definedTags(Map.of("string", "string"))
.discoveryKey("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.licenseModel("string")
.storageServerNames("string")
.build());
oci_cloud_exadata_infrastructure_resource = oci.databasemanagement.CloudExadataInfrastructure("ociCloudExadataInfrastructureResource",
compartment_id="string",
vm_cluster_ids=["string"],
defined_tags={
"string": "string",
},
discovery_key="string",
display_name="string",
freeform_tags={
"string": "string",
},
license_model="string",
storage_server_names=["string"])
const ociCloudExadataInfrastructureResource = new oci.databasemanagement.CloudExadataInfrastructure("ociCloudExadataInfrastructureResource", {
compartmentId: "string",
vmClusterIds: ["string"],
definedTags: {
string: "string",
},
discoveryKey: "string",
displayName: "string",
freeformTags: {
string: "string",
},
licenseModel: "string",
storageServerNames: ["string"],
});
type: oci:DatabaseManagement:CloudExadataInfrastructure
properties:
compartmentId: string
definedTags:
string: string
discoveryKey: string
displayName: string
freeformTags:
string: string
licenseModel: string
storageServerNames:
- string
vmClusterIds:
- string
CloudExadataInfrastructure 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 CloudExadataInfrastructure resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Vm
Cluster List<string>Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- 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"} - Discovery
Key string - (Updatable) The unique key of the discovery request.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"} - License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Storage
Server List<string>Names - (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 VM Clusters are included.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Vm
Cluster []stringIds (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- 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"} - Discovery
Key string - (Updatable) The unique key of the discovery request.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"} - License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Storage
Server []stringNames - (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 VM Clusters are included.
- compartment
Id String - (Updatable) The OCID of the compartment.
- vm
Cluster List<String>Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- 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"} - discovery
Key String - (Updatable) The unique key of the discovery request.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"} - license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- storage
Server List<String>Names - (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 VM Clusters are included.
- compartment
Id string - (Updatable) The OCID of the compartment.
- vm
Cluster string[]Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- {[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"} - discovery
Key string - (Updatable) The unique key of the discovery request.
- display
Name string - (Updatable) The name of the Exadata infrastructure.
- {[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"} - license
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- storage
Server string[]Names - (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 VM Clusters are included.
- compartment_
id str - (Updatable) The OCID of the compartment.
- vm_
cluster_ Sequence[str]ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- 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.
- 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_ Sequence[str]names - (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 VM Clusters are included.
- compartment
Id String - (Updatable) The OCID of the compartment.
- vm
Cluster List<String>Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- 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"} - discovery
Key String - (Updatable) The unique key of the discovery request.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"} - license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- storage
Server List<String>Names - (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 VM Clusters are included.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudExadataInfrastructure resource produces the following output properties:
- Additional
Details Dictionary<string, string> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Database
Compartments List<string> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- Deployment
Type string - The infrastructure deployment type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Infrastructure
Type string - Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- Resource
Type string - The type of Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids List<CloudExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- 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"} - Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Vm
Clusters List<CloudExadata Infrastructure Vm Cluster> - The list of VM Clusters in the Exadata infrastructure.
- Additional
Details map[string]string - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Database
Compartments []string - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- Deployment
Type string - The infrastructure deployment type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Infrastructure
Type string - Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- Resource
Type string - The type of Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids []CloudExadata Infrastructure Storage Grid - The Exadata storage server grid of the Exadata infrastructure.
- 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"} - Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Vm
Clusters []CloudExadata Infrastructure Vm Cluster - The list of VM Clusters in the Exadata infrastructure.
- additional
Details Map<String,String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- deployment
Type String - The infrastructure deployment type.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructure
Type String - internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- resource
Type String - The type of Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<CloudExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- 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"} - time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- vm
Clusters List<CloudExadata Infrastructure Vm Cluster> - The list of VM Clusters in the Exadata infrastructure.
- additional
Details {[key: string]: string} - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - database
Compartments string[] - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- deployment
Type string - The infrastructure deployment type.
- id string
- The provider-assigned unique ID for this managed resource.
- infrastructure
Type string - internal
Id string - The internal ID of the Exadata resource.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- rack
Size string - The rack size of the Exadata infrastructure.
- resource
Type string - The type of Exadata resource.
- state string
- The current lifecycle state of the database resource.
- status string
- The status of the Exadata resource.
- storage
Grids CloudExadata Infrastructure Storage Grid[] - The Exadata storage server grid of the Exadata infrastructure.
- {[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"} - time
Created string - The timestamp of the creation of the Exadata resource.
- time
Updated string - The timestamp of the last update of the Exadata resource.
- version string
- The version of the Exadata resource.
- vm
Clusters CloudExadata Infrastructure Vm Cluster[] - The list of VM Clusters in the Exadata infrastructure.
- 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.
- deployment_
type str - The infrastructure deployment type.
- id str
- The provider-assigned unique ID for this managed resource.
- infrastructure_
type str - 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.
- resource_
type str - The type of Exadata resource.
- state str
- The current lifecycle state of the database resource.
- status str
- The status of the Exadata resource.
- storage_
grids Sequence[CloudExadata Infrastructure Storage Grid] - The Exadata storage server grid of the Exadata infrastructure.
- 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.
- vm_
clusters Sequence[CloudExadata Infrastructure Vm Cluster] - The list of VM Clusters in the Exadata infrastructure.
- additional
Details Map<String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- deployment
Type String - The infrastructure deployment type.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructure
Type String - internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- resource
Type String - The type of Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<Property Map> - The Exadata storage server grid of the Exadata infrastructure.
- 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"} - time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- vm
Clusters List<Property Map> - The list of VM Clusters in the Exadata infrastructure.
Look up Existing CloudExadataInfrastructure Resource
Get an existing CloudExadataInfrastructure 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?: CloudExadataInfrastructureState, opts?: CustomResourceOptions): CloudExadataInfrastructure@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,
defined_tags: Optional[Mapping[str, str]] = None,
deployment_type: Optional[str] = None,
discovery_key: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
infrastructure_type: Optional[str] = None,
internal_id: Optional[str] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
rack_size: Optional[str] = None,
resource_type: Optional[str] = None,
state: Optional[str] = None,
status: Optional[str] = None,
storage_grids: Optional[Sequence[CloudExadataInfrastructureStorageGridArgs]] = 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,
vm_cluster_ids: Optional[Sequence[str]] = None,
vm_clusters: Optional[Sequence[CloudExadataInfrastructureVmClusterArgs]] = None) -> CloudExadataInfrastructurefunc GetCloudExadataInfrastructure(ctx *Context, name string, id IDInput, state *CloudExadataInfrastructureState, opts ...ResourceOption) (*CloudExadataInfrastructure, error)public static CloudExadataInfrastructure Get(string name, Input<string> id, CloudExadataInfrastructureState? state, CustomResourceOptions? opts = null)public static CloudExadataInfrastructure get(String name, Output<String> id, CloudExadataInfrastructureState state, CustomResourceOptions options)resources: _: type: oci:DatabaseManagement:CloudExadataInfrastructure 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.
- Additional
Details Dictionary<string, string> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Compartments List<string> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- 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"} - Deployment
Type string - The infrastructure deployment type.
- Discovery
Key string - (Updatable) The unique key of the discovery request.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"} - Infrastructure
Type string - Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- Resource
Type string - The type of Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids List<CloudExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- Storage
Server List<string>Names - (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 VM Clusters are included.
- 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"} - Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Vm
Cluster List<string>Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- Vm
Clusters List<CloudExadata Infrastructure Vm Cluster> - The list of VM Clusters in the Exadata infrastructure.
- Additional
Details map[string]string - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Compartments []string - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- 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"} - Deployment
Type string - The infrastructure deployment type.
- Discovery
Key string - (Updatable) The unique key of the discovery request.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"} - Infrastructure
Type string - Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- Resource
Type string - The type of Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids []CloudExadata Infrastructure Storage Grid Args - The Exadata storage server grid of the Exadata infrastructure.
- Storage
Server []stringNames - (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 VM Clusters are included.
- 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"} - Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Vm
Cluster []stringIds (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- Vm
Clusters []CloudExadata Infrastructure Vm Cluster Args - The list of VM Clusters in the Exadata infrastructure.
- additional
Details Map<String,String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - compartment
Id String - (Updatable) The OCID of the compartment.
- database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- 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"} - deployment
Type String - The infrastructure deployment type.
- discovery
Key String - (Updatable) The unique key of the discovery request.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"} - infrastructure
Type String - internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- resource
Type String - The type of Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<CloudExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- storage
Server List<String>Names - (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 VM Clusters are included.
- 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"} - time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- vm
Cluster List<String>Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- vm
Clusters List<CloudExadata Infrastructure Vm Cluster> - The list of VM Clusters in the Exadata infrastructure.
- additional
Details {[key: string]: string} - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - compartment
Id string - (Updatable) The OCID of the compartment.
- database
Compartments string[] - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- {[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"} - deployment
Type string - The infrastructure deployment type.
- discovery
Key string - (Updatable) The unique key of the discovery request.
- display
Name string - (Updatable) The name of the Exadata infrastructure.
- {[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"} - infrastructure
Type string - internal
Id string - The internal ID of the Exadata resource.
- license
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- rack
Size string - The rack size of the Exadata infrastructure.
- resource
Type string - The type of Exadata resource.
- state string
- The current lifecycle state of the database resource.
- status string
- The status of the Exadata resource.
- storage
Grids CloudExadata Infrastructure Storage Grid[] - The Exadata storage server grid of the Exadata infrastructure.
- storage
Server string[]Names - (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 VM Clusters are included.
- {[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"} - time
Created string - The timestamp of the creation of the Exadata resource.
- time
Updated string - The timestamp of the last update of the Exadata resource.
- version string
- The version of the Exadata resource.
- vm
Cluster string[]Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- vm
Clusters CloudExadata Infrastructure Vm Cluster[] - The list of VM Clusters in the Exadata infrastructure.
- 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.
- 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"} - deployment_
type str - The infrastructure deployment type.
- discovery_
key str - (Updatable) The unique key of the discovery request.
- display_
name str - (Updatable) The name of the Exadata infrastructure.
- 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"} - infrastructure_
type str - 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.
- resource_
type str - The type of Exadata resource.
- state str
- The current lifecycle state of the database resource.
- status str
- The status of the Exadata resource.
- storage_
grids Sequence[CloudExadata Infrastructure Storage Grid Args] - The Exadata storage server grid of the Exadata infrastructure.
- storage_
server_ Sequence[str]names - (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 VM Clusters are included.
- 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.
- vm_
cluster_ Sequence[str]ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- vm_
clusters Sequence[CloudExadata Infrastructure Vm Cluster Args] - The list of VM Clusters in the Exadata infrastructure.
- additional
Details Map<String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - compartment
Id String - (Updatable) The OCID of the compartment.
- database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- 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"} - deployment
Type String - The infrastructure deployment type.
- discovery
Key String - (Updatable) The unique key of the discovery request.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"} - infrastructure
Type String - internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- resource
Type String - The type of Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<Property Map> - The Exadata storage server grid of the Exadata infrastructure.
- storage
Server List<String>Names - (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 VM Clusters are included.
- 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"} - time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- vm
Cluster List<String>Ids (Updatable) The list of VM Clusters in the Exadata infrastructure.
** 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
- vm
Clusters List<Property Map> - The list of VM Clusters in the Exadata infrastructure.
Supporting Types
CloudExadataInfrastructureStorageGrid, CloudExadataInfrastructureStorageGridArgs
- Additional
Details Dictionary<string, string> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Resource
Type string - The type of Exadata resource.
- Server
Count int - 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.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]string - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Resource
Type string - The type of Exadata resource.
- Server
Count int - 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.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - display
Name String - (Updatable) The name of the Exadata infrastructure.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- resource
Type String - The type of Exadata resource.
- server
Count Integer - 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.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: string} - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - display
Name string - (Updatable) The name of the Exadata infrastructure.
- id string
- The OCID of the Exadata resource.
- internal
Id string - The internal ID of the Exadata resource.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- resource
Type string - The type of Exadata resource.
- server
Count 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.
- time
Created string - The timestamp of the creation of the Exadata resource.
- time
Updated 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.
- resource_
type str - The type of Exadata resource.
- server_
count int - 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.
- additional
Details Map<String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - display
Name String - (Updatable) The name of the Exadata infrastructure.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- resource
Type String - The type of Exadata resource.
- server
Count 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.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
CloudExadataInfrastructureVmCluster, CloudExadataInfrastructureVmClusterArgs
- Additional
Details Dictionary<string, string> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Compartment
Id string - (Updatable) The OCID of the compartment.
- Deployment
Type string - The infrastructure deployment type.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Home
Directory string - The Oracle home directory.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Resource
Type string - The type of Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]string - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - Compartment
Id string - (Updatable) The OCID of the compartment.
- Deployment
Type string - The infrastructure deployment type.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Home
Directory string - The Oracle home directory.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Resource
Type string - The type of Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - compartment
Id String - (Updatable) The OCID of the compartment.
- deployment
Type String - The infrastructure deployment type.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- home
Directory String - The Oracle home directory.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- resource
Type String - The type of Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: string} - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - compartment
Id string - (Updatable) The OCID of the compartment.
- deployment
Type string - The infrastructure deployment type.
- display
Name string - (Updatable) The name of the Exadata infrastructure.
- home
Directory string - The Oracle home directory.
- id string
- The OCID of the Exadata resource.
- internal
Id string - The internal ID of the Exadata resource.
- license
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- resource
Type string - The type of Exadata resource.
- state string
- The current lifecycle state of the database resource.
- status string
- The status of the Exadata resource.
- time
Created string - The timestamp of the creation of the Exadata resource.
- time
Updated 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.
- deployment_
type str - The infrastructure deployment type.
- display_
name str - (Updatable) The name of the Exadata infrastructure.
- home_
directory str - The Oracle home directory.
- 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.
- resource_
type str - The type of 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.
- additional
Details Map<String> - The additional details of the resource defined in
{"key": "value"}format. Example:{"bar-key": "value"} - compartment
Id String - (Updatable) The OCID of the compartment.
- deployment
Type String - The infrastructure deployment type.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- home
Directory String - The Oracle home directory.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- resource
Type String - The type of Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
Import
CloudExadataInfrastructures can be imported using the id, e.g.
$ pulumi import oci:DatabaseManagement/cloudExadataInfrastructure:CloudExadataInfrastructure test_cloud_exadata_infrastructure "id"
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
ociTerraform Provider.
published on Thursday, Mar 19, 2026 by Pulumi
