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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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}
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 string
- The unique name of the resource.
- args ExternalExadataInfrastructureArgs
- 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 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 string
- The unique name of the resource.
- args ExternalExadataInfrastructureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalExadataInfrastructureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
    },
});
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"),
	},
})
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());
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"])
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"],
});
type: oci:DatabaseManagement:ExternalExadataInfrastructure
properties:
    compartmentId: string
    dbSystemIds:
        - string
    definedTags:
        string: string
    discoveryKey: string
    displayName: string
    freeformTags:
        string: string
    licenseModel: string
    storageServerNames:
        - string
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 string
- (Updatable) The OCID of the compartment.
- DbSystem List<string>Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- DisplayName string
- (Updatable) The name of the Exadata infrastructure.
- 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.
- 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.
- StorageServer 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 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 string
- (Updatable) The OCID of the compartment.
- DbSystem []stringIds 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- DisplayName string
- (Updatable) The name of the Exadata infrastructure.
- 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.
- 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.
- StorageServer []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 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 String
- (Updatable) The OCID of the compartment.
- dbSystem List<String>Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- displayName String
- (Updatable) The name of the Exadata infrastructure.
- 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.
- 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.
- storageServer 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 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 string
- (Updatable) The OCID of the compartment.
- dbSystem string[]Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- displayName string
- (Updatable) The name of the Exadata infrastructure.
- {[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.
- {[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.
- storageServer 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 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 str
- (Updatable) The OCID of the compartment.
- db_system_ Sequence[str]ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- display_name str
- (Updatable) The name of the Exadata infrastructure.
- 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.
- 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 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 String
- (Updatable) The OCID of the compartment.
- dbSystem List<String>Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- displayName String
- (Updatable) The name of the Exadata infrastructure.
- 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.
- 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.
- storageServer 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 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<ExternalExadata Infrastructure Database System> 
- 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<ExternalExadata 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"}
- 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 []ExternalExadata Infrastructure Database System 
- 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 []ExternalExadata 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"}
- 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<ExternalExadata Infrastructure Database System> 
- 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<ExternalExadata 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"}
- 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 ExternalExadata Infrastructure Database System[] 
- 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 ExternalExadata 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"}
- 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[ExternalExadata Infrastructure Database System] 
- 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[ExternalExadata 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.
- 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.
- 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[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[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) -> ExternalExadataInfrastructurefunc 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
- 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.
- 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<ExternalExadata Infrastructure Database System> 
- A list of DB systems.
- DbSystem List<string>Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- 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.
- 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<ExternalExadata Infrastructure Storage Grid> 
- The Exadata storage server grid of the Exadata infrastructure.
- StorageServer 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 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 
- 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 []ExternalExadata Infrastructure Database System Args 
- A list of DB systems.
- DbSystem []stringIds 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- 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.
- 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 []ExternalExadata Infrastructure Storage Grid Args 
- The Exadata storage server grid of the Exadata infrastructure.
- StorageServer []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 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 
- 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<ExternalExadata Infrastructure Database System> 
- A list of DB systems.
- dbSystem List<String>Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- 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.
- 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<ExternalExadata Infrastructure Storage Grid> 
- The Exadata storage server grid of the Exadata infrastructure.
- storageServer 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 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 
- 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 ExternalExadata Infrastructure Database System[] 
- A list of DB systems.
- dbSystem string[]Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- {[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.
- {[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 ExternalExadata Infrastructure Storage Grid[] 
- The Exadata storage server grid of the Exadata infrastructure.
- storageServer 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 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 
- {[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[ExternalExadata Infrastructure Database System Args] 
- A list of DB systems.
- db_system_ Sequence[str]ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- 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"}
- 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[ExternalExadata 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 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 
- 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.
- dbSystem List<String>Ids 
- (Updatable) The list of DB systems in the Exadata infrastructure.
- 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.
- 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.
- storageServer 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 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 
- 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"
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.