1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. ExternalExadataInfrastructure
Oracle Cloud Infrastructure v1.10.0 published on Thursday, Sep 7, 2023 by Pulumi

oci.DatabaseManagement.ExternalExadataInfrastructure

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.10.0 published on Thursday, Sep 7, 2023 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

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testExternalExadataInfrastructure = new Oci.DatabaseManagement.ExternalExadataInfrastructure("testExternalExadataInfrastructure", new()
        {
            CompartmentId = @var.Compartment_id,
            DbSystemIds = @var.External_exadata_infrastructure_db_system_ids,
            DisplayName = @var.External_exadata_infrastructure_display_name,
            DiscoveryKey = @var.External_exadata_infrastructure_discovery_key,
            LicenseModel = @var.External_exadata_infrastructure_license_model,
            StorageServerNames = @var.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, "testExternalExadataInfrastructure", &DatabaseManagement.ExternalExadataInfrastructureArgs{
    			CompartmentId:      pulumi.Any(_var.Compartment_id),
    			DbSystemIds:        pulumi.Any(_var.External_exadata_infrastructure_db_system_ids),
    			DisplayName:        pulumi.Any(_var.External_exadata_infrastructure_display_name),
    			DiscoveryKey:       pulumi.Any(_var.External_exadata_infrastructure_discovery_key),
    			LicenseModel:       pulumi.Any(_var.External_exadata_infrastructure_license_model),
    			StorageServerNames: pulumi.Any(_var.External_exadata_infrastructure_storage_server_names),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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(var_.compartment_id())
                .dbSystemIds(var_.external_exadata_infrastructure_db_system_ids())
                .displayName(var_.external_exadata_infrastructure_display_name())
                .discoveryKey(var_.external_exadata_infrastructure_discovery_key())
                .licenseModel(var_.external_exadata_infrastructure_license_model())
                .storageServerNames(var_.external_exadata_infrastructure_storage_server_names())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_external_exadata_infrastructure = oci.database_management.ExternalExadataInfrastructure("testExternalExadataInfrastructure",
        compartment_id=var["compartment_id"],
        db_system_ids=var["external_exadata_infrastructure_db_system_ids"],
        display_name=var["external_exadata_infrastructure_display_name"],
        discovery_key=var["external_exadata_infrastructure_discovery_key"],
        license_model=var["external_exadata_infrastructure_license_model"],
        storage_server_names=var["external_exadata_infrastructure_storage_server_names"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testExternalExadataInfrastructure = new oci.databasemanagement.ExternalExadataInfrastructure("testExternalExadataInfrastructure", {
        compartmentId: _var.compartment_id,
        dbSystemIds: _var.external_exadata_infrastructure_db_system_ids,
        displayName: _var.external_exadata_infrastructure_display_name,
        discoveryKey: _var.external_exadata_infrastructure_discovery_key,
        licenseModel: _var.external_exadata_infrastructure_license_model,
        storageServerNames: _var.external_exadata_infrastructure_storage_server_names,
    });
    
    resources:
      testExternalExadataInfrastructure:
        type: oci:DatabaseManagement:ExternalExadataInfrastructure
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          dbSystemIds: ${var.external_exadata_infrastructure_db_system_ids}
          displayName: ${var.external_exadata_infrastructure_display_name}
          #Optional
          discoveryKey: ${var.external_exadata_infrastructure_discovery_key}
          licenseModel: ${var.external_exadata_infrastructure_license_model}
          storageServerNames: ${var.external_exadata_infrastructure_storage_server_names}
    

    Create ExternalExadataInfrastructure Resource

    new ExternalExadataInfrastructure(name: string, args: ExternalExadataInfrastructureArgs, opts?: CustomResourceOptions);
    @overload
    def ExternalExadataInfrastructure(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      compartment_id: Optional[str] = None,
                                      db_system_ids: Optional[Sequence[str]] = None,
                                      discovery_key: Optional[str] = None,
                                      display_name: Optional[str] = None,
                                      license_model: Optional[str] = None,
                                      storage_server_names: Optional[Sequence[str]] = None)
    @overload
    def ExternalExadataInfrastructure(resource_name: str,
                                      args: ExternalExadataInfrastructureArgs,
                                      opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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.

    DiscoveryKey string

    (Updatable) The unique key of the discovery request.

    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.

    DiscoveryKey string

    (Updatable) The unique key of the discovery request.

    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.

    discoveryKey String

    (Updatable) The unique key of the discovery request.

    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.

    discoveryKey string

    (Updatable) The unique key of the discovery request.

    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.

    discovery_key str

    (Updatable) The unique key of the discovery request.

    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.

    discoveryKey String

    (Updatable) The unique key of the discovery request.

    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.

    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.

    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.

    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.

    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 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 ExternalExadataInfrastructureStorageGrid]

    The Exadata storage server grid of the Exadata infrastructure.

    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.

    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,
            discovery_key: Optional[str] = None,
            display_name: Optional[str] = None,
            internal_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            rack_size: Optional[str] = None,
            state: Optional[str] = None,
            status: Optional[str] = None,
            storage_grids: Optional[Sequence[_databasemanagement.ExternalExadataInfrastructureStorageGridArgs]] = None,
            storage_server_names: Optional[Sequence[str]] = None,
            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.

    DiscoveryKey string

    (Updatable) The unique key of the discovery request.

    DisplayName string

    (Updatable) The name of the Exadata infrastructure.

    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

    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.

    DiscoveryKey string

    (Updatable) The unique key of the discovery request.

    DisplayName string

    (Updatable) The name of the Exadata infrastructure.

    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

    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.

    discoveryKey String

    (Updatable) The unique key of the discovery request.

    displayName String

    (Updatable) The name of the Exadata infrastructure.

    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

    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.

    discoveryKey string

    (Updatable) The unique key of the discovery request.

    displayName string

    (Updatable) The name of the Exadata infrastructure.

    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

    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 ExternalExadataInfrastructureDatabaseSystemArgs]

    A list of DB systems.

    db_system_ids Sequence[str]

    (Updatable) The list of DB systems in the Exadata infrastructure.

    discovery_key str

    (Updatable) The unique key of the discovery request.

    display_name str

    (Updatable) The name of the Exadata infrastructure.

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

    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.

    discoveryKey String

    (Updatable) The unique key of the discovery request.

    displayName String

    (Updatable) The name of the Exadata infrastructure.

    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

    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"
    

    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.10.0 published on Thursday, Sep 7, 2023 by Pulumi