oci.DatabaseManagement.ExternalExadataInfrastructure
Explore with Pulumi AI
This resource provides the External Exadata Infrastructure resource in Oracle Cloud Infrastructure Database Management service.
Creates an Oracle Cloud Infrastructure resource for the Exadata infrastructure and enables the Monitoring service for the Exadata infrastructure. The following resource/subresources are created: Infrastructure Storage server connectors Storage servers Storage grids
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExternalExadataInfrastructure = new oci.databasemanagement.ExternalExadataInfrastructure("test_external_exadata_infrastructure", {
compartmentId: compartmentId,
dbSystemIds: externalExadataInfrastructureDbSystemIds,
displayName: externalExadataInfrastructureDisplayName,
definedTags: {
"Operations.CostCenter": "42",
},
discoveryKey: externalExadataInfrastructureDiscoveryKey,
freeformTags: {
Department: "Finance",
},
licenseModel: externalExadataInfrastructureLicenseModel,
storageServerNames: externalExadataInfrastructureStorageServerNames,
});
import pulumi
import pulumi_oci as oci
test_external_exadata_infrastructure = oci.database_management.ExternalExadataInfrastructure("test_external_exadata_infrastructure",
compartment_id=compartment_id,
db_system_ids=external_exadata_infrastructure_db_system_ids,
display_name=external_exadata_infrastructure_display_name,
defined_tags={
"Operations.CostCenter": "42",
},
discovery_key=external_exadata_infrastructure_discovery_key,
freeform_tags={
"Department": "Finance",
},
license_model=external_exadata_infrastructure_license_model,
storage_server_names=external_exadata_infrastructure_storage_server_names)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/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.
Constructor example
The following reference example uses placeholder values for all input properties.
var externalExadataInfrastructureResource = new Oci.DatabaseManagement.ExternalExadataInfrastructure("externalExadataInfrastructureResource", new()
{
CompartmentId = "string",
DbSystemIds = new[]
{
"string",
},
DisplayName = "string",
DefinedTags =
{
{ "string", "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:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Db
System List<string>Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"}
- Discovery
Key string - (Updatable) The unique key of the discovery request.
- 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"}
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Storage
Server List<string>Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the 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 string - (Updatable) The OCID of the compartment.
- Db
System []stringIds - (Updatable) The list of DB systems in the Exadata infrastructure.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"}
- Discovery
Key string - (Updatable) The unique key of the discovery request.
- 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"}
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Storage
Server []stringNames (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the 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 String - (Updatable) The OCID of the compartment.
- db
System List<String>Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"}
- discovery
Key String - (Updatable) The unique key of the discovery request.
- 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"}
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- storage
Server List<String>Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the 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 string - (Updatable) The OCID of the compartment.
- db
System string[]Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- display
Name string - (Updatable) The name of the Exadata infrastructure.
- {[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"}
- discovery
Key string - (Updatable) The unique key of the discovery request.
- {[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"}
- license
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- storage
Server string[]Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str - (Updatable) The OCID of the compartment.
- db_
system_ Sequence[str]ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- display_
name str - (Updatable) The name of the Exadata infrastructure.
- Mapping[str, 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.
- 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_ Sequence[str]names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - (Updatable) The OCID of the compartment.
- db
System List<String>Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"}
- discovery
Key String - (Updatable) The unique key of the discovery request.
- 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"}
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- storage
Server List<String>Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the 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:
- Additional
Details Dictionary<string, object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Database
Compartments List<string> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- Database
Systems List<ExternalExadata Infrastructure Database System> - A list of DB systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids List<ExternalExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- 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"}
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]interface{} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Database
Compartments []string - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- Database
Systems []ExternalExadata Infrastructure Database System - A list of DB systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids []ExternalExadata Infrastructure Storage Grid - The Exadata storage server grid of the Exadata infrastructure.
- 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"}
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,Object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- database
Systems List<ExternalExadata Infrastructure Database System> - A list of DB systems.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<ExternalExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- 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"}
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: any} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- database
Compartments string[] - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- database
Systems ExternalExadata Infrastructure Database System[] - A list of DB systems.
- id string
- The provider-assigned unique ID for this managed resource.
- internal
Id string - The internal ID of the Exadata resource.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- rack
Size string - The rack size of the Exadata infrastructure.
- state string
- The current lifecycle state of the database resource.
- status string
- The status of the Exadata resource.
- storage
Grids ExternalExadata Infrastructure Storage Grid[] - The Exadata storage server grid of the Exadata infrastructure.
- {[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"}
- time
Created string - The timestamp of the creation of the Exadata resource.
- time
Updated string - The timestamp of the last update of the Exadata resource.
- version string
- The version of the Exadata resource.
- additional_
details Mapping[str, 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.External Exadata Infrastructure Database System] - A list of DB systems.
- id str
- The provider-assigned unique ID for this managed resource.
- internal_
id str - The internal ID of the Exadata resource.
- lifecycle_
details str - The details of the lifecycle state of the Exadata resource.
- rack_
size str - The rack size of the Exadata infrastructure.
- state str
- The current lifecycle state of the database resource.
- status str
- The status of the Exadata resource.
- storage_
grids Sequence[databasemanagement.External Exadata Infrastructure Storage Grid] - The Exadata storage server grid of the Exadata infrastructure.
- 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.
- additional
Details Map<Any> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- database
Systems List<Property Map> - A list of DB systems.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<Property Map> - The Exadata storage server grid of the Exadata infrastructure.
- Map<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 String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
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.
- Additional
Details Dictionary<string, object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Compartments List<string> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- Database
Systems List<ExternalExadata Infrastructure Database System> - A list of DB systems.
- Db
System List<string>Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- 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"}
- Discovery
Key string - (Updatable) The unique key of the discovery request.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"}
- Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids List<ExternalExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- Storage
Server List<string>Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Dictionary<string, 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"}
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]interface{} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Compartments []string - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- Database
Systems []ExternalExadata Infrastructure Database System Args - A list of DB systems.
- Db
System []stringIds - (Updatable) The list of DB systems in the Exadata infrastructure.
- 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"}
- Discovery
Key string - (Updatable) The unique key of the discovery request.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- 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"}
- Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Rack
Size string - The rack size of the Exadata infrastructure.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Storage
Grids []ExternalExadata Infrastructure Storage Grid Args - The Exadata storage server grid of the Exadata infrastructure.
- Storage
Server []stringNames (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- map[string]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"}
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,Object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id String - (Updatable) The OCID of the compartment.
- database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- database
Systems List<ExternalExadata Infrastructure Database System> - A list of DB systems.
- db
System List<String>Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- 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"}
- discovery
Key String - (Updatable) The unique key of the discovery request.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"}
- internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<ExternalExadata Infrastructure Storage Grid> - The Exadata storage server grid of the Exadata infrastructure.
- storage
Server List<String>Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String,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"}
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: any} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id string - (Updatable) The OCID of the compartment.
- database
Compartments string[] - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- database
Systems ExternalExadata Infrastructure Database System[] - A list of DB systems.
- db
System string[]Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- {[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"}
- discovery
Key string - (Updatable) The unique key of the discovery request.
- display
Name string - (Updatable) The name of the Exadata infrastructure.
- {[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"}
- internal
Id string - The internal ID of the Exadata resource.
- license
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- rack
Size string - The rack size of the Exadata infrastructure.
- state string
- The current lifecycle state of the database resource.
- status string
- The status of the Exadata resource.
- storage
Grids ExternalExadata Infrastructure Storage Grid[] - The Exadata storage server grid of the Exadata infrastructure.
- storage
Server string[]Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[key: string]: 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 string - The timestamp of the creation of the Exadata resource.
- time
Updated string - The timestamp of the last update of the Exadata resource.
- version string
- The version of the Exadata resource.
- additional_
details Mapping[str, 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.External Exadata Infrastructure Database System Args] - A list of DB systems.
- db_
system_ Sequence[str]ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- Mapping[str, 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.
- 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.External Exadata Infrastructure Storage Grid Args] - The Exadata storage server grid of the Exadata infrastructure.
- storage_
server_ Sequence[str]names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, 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.
- additional
Details Map<Any> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id String - (Updatable) The OCID of the compartment.
- database
Compartments List<String> - The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments.
- database
Systems List<Property Map> - A list of DB systems.
- db
System List<String>Ids - (Updatable) The list of DB systems in the Exadata infrastructure.
- 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"}
- discovery
Key String - (Updatable) The unique key of the discovery request.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- 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"}
- internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- rack
Size String - The rack size of the Exadata infrastructure.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- storage
Grids List<Property Map> - The Exadata storage server grid of the Exadata infrastructure.
- storage
Server List<String>Names (Updatable) The list of all the Exadata storage server names to be included for monitoring purposes. If not specified, all the Exadata storage servers associated with the DB systems are included.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<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 String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
Supporting Types
ExternalExadataInfrastructureDatabaseSystem, ExternalExadataInfrastructureDatabaseSystemArgs
- Additional
Details Dictionary<string, object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]interface{} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- License
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- State string
- The current lifecycle state of the database resource.
- Status string
- The status of the Exadata resource.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,Object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: any} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - (Updatable) The name of the Exadata infrastructure.
- id string
- The OCID of the Exadata resource.
- internal
Id string - The internal ID of the Exadata resource.
- license
Model string - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- state string
- The current lifecycle state of the database resource.
- status string
- The status of the Exadata resource.
- time
Created string - The timestamp of the creation of the Exadata resource.
- time
Updated string - The timestamp of the last update of the Exadata resource.
- version string
- The version of the Exadata resource.
- additional_
details Mapping[str, 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.
- additional
Details Map<Any> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- license
Model String - (Updatable) The Oracle license model that applies to the database management resources.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
ExternalExadataInfrastructureStorageGrid, ExternalExadataInfrastructureStorageGridArgs
- Additional
Details Dictionary<string, object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Server
Count 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.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]interface{} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Display
Name string - (Updatable) The name of the Exadata infrastructure.
- Id string
- The OCID of the Exadata resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- Server
Count 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.
- Time
Created string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,Object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- server
Count 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.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: any} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- display
Name string - (Updatable) The name of the Exadata infrastructure.
- id string
- The OCID of the Exadata resource.
- internal
Id string - The internal ID of the Exadata resource.
- lifecycle
Details string - The details of the lifecycle state of the Exadata resource.
- server
Count number - The number of Exadata storage servers in the Exadata infrastructure.
- state string
- The current lifecycle state of the database resource.
- status string
- The status of the Exadata resource.
- time
Created string - The timestamp of the creation of the Exadata resource.
- time
Updated string - The timestamp of the last update of the Exadata resource.
- version string
- The version of the Exadata resource.
- additional_
details Mapping[str, 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.
- additional
Details Map<Any> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- display
Name String - (Updatable) The name of the Exadata infrastructure.
- id String
- The OCID of the Exadata resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details String - The details of the lifecycle state of the Exadata resource.
- server
Count Number - The number of Exadata storage servers in the Exadata infrastructure.
- state String
- The current lifecycle state of the database resource.
- status String
- The status of the Exadata resource.
- time
Created String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
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.