import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Cloud Exadata Infrastructure resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the Exadata infrastructure specified by exadataInfrastructureId. It includes the VMCluster and storage grid within the * Exadata infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataInfrastructure = oci.databasemanagement.getCloudExadataInfrastructure({ * cloudExadataInfrastructureId: testCloudExadataInfrastructureOciDatabaseManagementCloudExadataInfrastructure.id, * }); * ``` */ export declare function getCloudExadataInfrastructure(args: GetCloudExadataInfrastructureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExadataInfrastructure. */ export interface GetCloudExadataInfrastructureArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ cloudExadataInfrastructureId: string; } /** * A collection of values returned by getCloudExadataInfrastructure. */ export interface GetCloudExadataInfrastructureResult { /** * The additional details of the resource defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}` */ readonly additionalDetails: { [key: string]: string; }; readonly cloudExadataInfrastructureId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The list of [OCIDs] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartments. */ readonly databaseCompartments: string[]; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The infrastructure deployment type. */ readonly deploymentType: string; readonly discoveryKey: string; /** * The name of the Exadata resource. English letters, numbers, "-", "_" and "." only. */ readonly displayName: string; /** * 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata resource. */ readonly id: string; readonly infrastructureType: string; /** * The internal ID of the Exadata resource. */ readonly internalId: string; /** * The Oracle license model that applies to the database management resources. */ readonly licenseModel: string; /** * The details of the lifecycle state of the Exadata resource. */ readonly lifecycleDetails: string; /** * The rack size of the Exadata infrastructure. */ readonly rackSize: string; /** * The type of Exadata resource. */ readonly resourceType: string; /** * The current lifecycle state of the database resource. */ readonly state: string; /** * The status of the Exadata resource. */ readonly status: string; /** * The Exadata storage server grid of the Exadata infrastructure. */ readonly storageGrids: outputs.DatabaseManagement.GetCloudExadataInfrastructureStorageGrid[]; readonly storageServerNames: string[]; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The timestamp of the creation of the Exadata resource. */ readonly timeCreated: string; /** * The timestamp of the last update of the Exadata resource. */ readonly timeUpdated: string; /** * The version of the Exadata resource. */ readonly version: string; readonly vmClusterIds: string[]; /** * The list of VM Clusters in the Exadata infrastructure. */ readonly vmClusters: outputs.DatabaseManagement.GetCloudExadataInfrastructureVmCluster[]; } /** * This data source provides details about a specific Cloud Exadata Infrastructure resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the Exadata infrastructure specified by exadataInfrastructureId. It includes the VMCluster and storage grid within the * Exadata infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataInfrastructure = oci.databasemanagement.getCloudExadataInfrastructure({ * cloudExadataInfrastructureId: testCloudExadataInfrastructureOciDatabaseManagementCloudExadataInfrastructure.id, * }); * ``` */ export declare function getCloudExadataInfrastructureOutput(args: GetCloudExadataInfrastructureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExadataInfrastructure. */ export interface GetCloudExadataInfrastructureOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ cloudExadataInfrastructureId: pulumi.Input; } //# sourceMappingURL=getCloudExadataInfrastructure.d.ts.map