1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. ExternalExadataInfrastructure
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.DatabaseManagement.ExternalExadataInfrastructure

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    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/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.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			DiscoveryKey: pulumi.Any(externalExadataInfrastructureDiscoveryKey),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("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, Any]] = None,
                                      discovery_key: Optional[str] = None,
                                      freeform_tags: Optional[Mapping[str, Any]] = 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.

    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", "any" },
        },
        DiscoveryKey = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        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.Map{
    		"string": pulumi.Any("any"),
    	},
    	DiscoveryKey: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	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", "any"))
        .discoveryKey("string")
        .freeformTags(Map.of("string", "any"))
        .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": "any",
        },
        discovery_key="string",
        freeform_tags={
            "string": "any",
        },
        license_model="string",
        storage_server_names=["string"])
    
    const externalExadataInfrastructureResource = new oci.databasemanagement.ExternalExadataInfrastructure("externalExadataInfrastructureResource", {
        compartmentId: "string",
        dbSystemIds: ["string"],
        displayName: "string",
        definedTags: {
            string: "any",
        },
        discoveryKey: "string",
        freeformTags: {
            string: "any",
        },
        licenseModel: "string",
        storageServerNames: ["string"],
    });
    
    type: oci:DatabaseManagement:ExternalExadataInfrastructure
    properties:
        compartmentId: string
        dbSystemIds:
            - string
        definedTags:
            string: any
        discoveryKey: string
        displayName: string
        freeformTags:
            string: any
        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

    The ExternalExadataInfrastructure resource accepts the following input properties:

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Outputs

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

    AdditionalDetails Dictionary<string, object>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    DatabaseCompartments List<string>
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    DatabaseSystems List<ExternalExadataInfrastructureDatabaseSystem>
    A list of DB systems.
    Id string
    The provider-assigned unique ID for this managed resource.
    InternalId string
    The internal ID of the Exadata resource.
    LifecycleDetails string
    The details of the lifecycle state of the Exadata resource.
    RackSize string
    The rack size of the Exadata infrastructure.
    State string
    The current lifecycle state of the database resource.
    Status string
    The status of the Exadata resource.
    StorageGrids List<ExternalExadataInfrastructureStorageGrid>
    The Exadata storage server grid of the Exadata infrastructure.
    SystemTags Dictionary<string, object>
    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]interface{}
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    DatabaseCompartments []string
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    DatabaseSystems []ExternalExadataInfrastructureDatabaseSystem
    A list of DB systems.
    Id string
    The provider-assigned unique ID for this managed resource.
    InternalId string
    The internal ID of the Exadata resource.
    LifecycleDetails string
    The details of the lifecycle state of the Exadata resource.
    RackSize string
    The rack size of the Exadata infrastructure.
    State string
    The current lifecycle state of the database resource.
    Status string
    The status of the Exadata resource.
    StorageGrids []ExternalExadataInfrastructureStorageGrid
    The Exadata storage server grid of the Exadata infrastructure.
    SystemTags map[string]interface{}
    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,Object>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    databaseCompartments List<String>
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    databaseSystems List<ExternalExadataInfrastructureDatabaseSystem>
    A list of DB systems.
    id String
    The provider-assigned unique ID for this managed resource.
    internalId String
    The internal ID of the Exadata resource.
    lifecycleDetails String
    The details of the lifecycle state of the Exadata resource.
    rackSize String
    The rack size of the Exadata infrastructure.
    state String
    The current lifecycle state of the database resource.
    status String
    The status of the Exadata resource.
    storageGrids List<ExternalExadataInfrastructureStorageGrid>
    The Exadata storage server grid of the Exadata infrastructure.
    systemTags Map<String,Object>
    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]: any}
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    databaseCompartments string[]
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    databaseSystems ExternalExadataInfrastructureDatabaseSystem[]
    A list of DB systems.
    id string
    The provider-assigned unique ID for this managed resource.
    internalId string
    The internal ID of the Exadata resource.
    lifecycleDetails string
    The details of the lifecycle state of the Exadata resource.
    rackSize string
    The rack size of the Exadata infrastructure.
    state string
    The current lifecycle state of the database resource.
    status string
    The status of the Exadata resource.
    storageGrids ExternalExadataInfrastructureStorageGrid[]
    The Exadata storage server grid of the Exadata infrastructure.
    systemTags {[key: string]: any}
    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, Any]
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    database_compartments Sequence[str]
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    database_systems Sequence[databasemanagement.ExternalExadataInfrastructureDatabaseSystem]
    A list of DB systems.
    id str
    The provider-assigned unique ID for this managed resource.
    internal_id str
    The internal ID of the Exadata resource.
    lifecycle_details str
    The details of the lifecycle state of the Exadata resource.
    rack_size str
    The rack size of the Exadata infrastructure.
    state str
    The current lifecycle state of the database resource.
    status str
    The status of the Exadata resource.
    storage_grids Sequence[databasemanagement.ExternalExadataInfrastructureStorageGrid]
    The Exadata storage server grid of the Exadata infrastructure.
    system_tags Mapping[str, Any]
    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<Any>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    databaseCompartments List<String>
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    databaseSystems List<Property Map>
    A list of DB systems.
    id String
    The provider-assigned unique ID for this managed resource.
    internalId String
    The internal ID of the Exadata resource.
    lifecycleDetails String
    The details of the lifecycle state of the Exadata resource.
    rackSize String
    The rack size of the Exadata infrastructure.
    state String
    The current lifecycle state of the database resource.
    status String
    The status of the Exadata resource.
    storageGrids List<Property Map>
    The Exadata storage server grid of the Exadata infrastructure.
    systemTags Map<Any>
    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, Any]] = None,
            compartment_id: Optional[str] = None,
            database_compartments: Optional[Sequence[str]] = None,
            database_systems: Optional[Sequence[_databasemanagement.ExternalExadataInfrastructureDatabaseSystemArgs]] = None,
            db_system_ids: Optional[Sequence[str]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            discovery_key: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            internal_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            rack_size: Optional[str] = None,
            state: Optional[str] = None,
            status: Optional[str] = None,
            storage_grids: Optional[Sequence[_databasemanagement.ExternalExadataInfrastructureStorageGridArgs]] = None,
            storage_server_names: Optional[Sequence[str]] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            version: Optional[str] = None) -> ExternalExadataInfrastructure
    func GetExternalExadataInfrastructure(ctx *Context, name string, id IDInput, state *ExternalExadataInfrastructureState, opts ...ResourceOption) (*ExternalExadataInfrastructure, error)
    public static ExternalExadataInfrastructure Get(string name, Input<string> id, ExternalExadataInfrastructureState? state, CustomResourceOptions? opts = null)
    public static ExternalExadataInfrastructure get(String name, Output<String> id, ExternalExadataInfrastructureState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdditionalDetails Dictionary<string, object>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DatabaseCompartments List<string>
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    DatabaseSystems List<ExternalExadataInfrastructureDatabaseSystem>
    A list of DB systems.
    DbSystemIds List<string>
    (Updatable) The list of DB systems in the Exadata infrastructure.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DiscoveryKey string
    (Updatable) The unique key of the discovery request.
    DisplayName string
    (Updatable) The name of the Exadata infrastructure.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    InternalId string
    The internal ID of the Exadata resource.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the database management resources.
    LifecycleDetails string
    The details of the lifecycle state of the Exadata resource.
    RackSize string
    The rack size of the Exadata infrastructure.
    State string
    The current lifecycle state of the database resource.
    Status string
    The status of the Exadata resource.
    StorageGrids List<ExternalExadataInfrastructureStorageGrid>
    The Exadata storage server grid of the Exadata infrastructure.
    StorageServerNames List<string>

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

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

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

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

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

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

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

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

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

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

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

    systemTags {[key: string]: any}
    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, Any]
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    compartment_id str
    (Updatable) The OCID of the compartment.
    database_compartments Sequence[str]
    The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
    database_systems Sequence[databasemanagement.ExternalExadataInfrastructureDatabaseSystemArgs]
    A list of DB systems.
    db_system_ids Sequence[str]
    (Updatable) The list of DB systems in the Exadata infrastructure.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    discovery_key str
    (Updatable) The unique key of the discovery request.
    display_name str
    (Updatable) The name of the Exadata infrastructure.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    internal_id str
    The internal ID of the Exadata resource.
    license_model str
    (Updatable) The Oracle license model that applies to the database management resources.
    lifecycle_details str
    The details of the lifecycle state of the Exadata resource.
    rack_size str
    The rack size of the Exadata infrastructure.
    state str
    The current lifecycle state of the database resource.
    status str
    The status of the Exadata resource.
    storage_grids Sequence[databasemanagement.ExternalExadataInfrastructureStorageGridArgs]
    The Exadata storage server grid of the Exadata infrastructure.
    storage_server_names Sequence[str]

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

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

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

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

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

    systemTags Map<Any>
    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, object>
    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]interface{}
    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,Object>
    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]: any}
    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, Any]
    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<Any>
    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, object>
    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]interface{}
    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,Object>
    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]: any}
    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, Any]
    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<Any>
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi