import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Autonomous Exadata Infrastructure resource in Oracle Cloud Infrastructure Database service. * * **Deprecated.** Use the [GetCloudExadataInfrastructure](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudExadataInfrastructure/GetCloudExadataInfrastructure) operation to get details of an Exadata Infrastructure resource and the [GetCloudAutonomousVmCluster](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudAutonomousVmCluster/GetCloudAutonomousVmCluster) operation to get details of an Autonomous Exadata VM cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousExadataInfrastructure = oci.database.getAutonomousExadataInfrastructure({ * autonomousExadataInfrastructureId: testAutonomousExadataInfrastructureOciDatabaseAutonomousExadataInfrastructure.id, * }); * ``` */ export declare function getAutonomousExadataInfrastructure(args: GetAutonomousExadataInfrastructureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAutonomousExadataInfrastructure. */ export interface GetAutonomousExadataInfrastructureArgs { /** * The Autonomous Exadata Infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousExadataInfrastructureId: string; } /** * A collection of values returned by getAutonomousExadataInfrastructure. */ export interface GetAutonomousExadataInfrastructureResult { readonly autonomousExadataInfrastructureId: string; /** * The name of the availability domain that the Autonomous Exadata Infrastructure is located in. * * @deprecated Autonomous Exadata Infrastructure resource is now end-of-life.Please provision cloud autonomous vm cluster instead. */ readonly availabilityDomain: string; /** * The OCID of the compartment. */ readonly compartmentId: string; readonly createAsync: boolean; /** * 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). */ readonly definedTags: { [key: string]: string; }; /** * The user-friendly name for the Autonomous Exadata Infrastructure. */ readonly displayName: string; /** * The domain name for the Autonomous Exadata Infrastructure. */ readonly domain: 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 host name for the Autonomous Exadata Infrastructure node. */ readonly hostname: string; /** * The OCID of the Autonomous Exadata Infrastructure. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run. */ readonly lastMaintenanceRunId: string; /** * The Oracle license model that applies to all databases in the Autonomous Exadata Infrastructure. The default is BRING_YOUR_OWN_LICENSE. */ readonly licenseModel: string; /** * Additional information about the current lifecycle state of the Autonomous Exadata Infrastructure. */ readonly lifecycleDetails: string; readonly maintenanceWindowDetails: outputs.Database.GetAutonomousExadataInfrastructureMaintenanceWindowDetail[]; /** * The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window. */ readonly maintenanceWindows: outputs.Database.GetAutonomousExadataInfrastructureMaintenanceWindow[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run. */ readonly nextMaintenanceRunId: string; /** * The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:** * * A network security group (NSG) is optional for Autonomous AI Databases with private access. The nsgIds list can be empty. */ readonly nsgIds: string[]; /** * The FQDN of the DNS record for the SCAN IP addresses that are associated with the Autonomous Exadata Infrastructure. */ readonly scanDnsName: string; /** * The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). */ readonly shape: string; /** * The current lifecycle state of the Autonomous Exadata Infrastructure. */ readonly state: string; /** * The OCID of the subnet the Autonomous Exadata Infrastructure is associated with. */ readonly subnetId: string; /** * The date and time the Autonomous Exadata Infrastructure was created. */ readonly timeCreated: string; /** * The OCID of the zone the Autonomous Exadata Infrastructure is associated with. */ readonly zoneId: string; } /** * This data source provides details about a specific Autonomous Exadata Infrastructure resource in Oracle Cloud Infrastructure Database service. * * **Deprecated.** Use the [GetCloudExadataInfrastructure](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudExadataInfrastructure/GetCloudExadataInfrastructure) operation to get details of an Exadata Infrastructure resource and the [GetCloudAutonomousVmCluster](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudAutonomousVmCluster/GetCloudAutonomousVmCluster) operation to get details of an Autonomous Exadata VM cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousExadataInfrastructure = oci.database.getAutonomousExadataInfrastructure({ * autonomousExadataInfrastructureId: testAutonomousExadataInfrastructureOciDatabaseAutonomousExadataInfrastructure.id, * }); * ``` */ export declare function getAutonomousExadataInfrastructureOutput(args: GetAutonomousExadataInfrastructureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAutonomousExadataInfrastructure. */ export interface GetAutonomousExadataInfrastructureOutputArgs { /** * The Autonomous Exadata Infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousExadataInfrastructureId: pulumi.Input; } //# sourceMappingURL=getAutonomousExadataInfrastructure.d.ts.map