/** * Database Service API * The API for the Database Service. Use this API to manage resources such as databases and DB Systems. For more information, see [Overview of the Database Service](https://docs.oracle.com/iaas/Content/Database/Concepts/databaseoverview.htm). * OpenAPI spec version: 20160918 * Contact: sic_dbaas_cp_us_grp@oracle.com * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Request to create Exadata infrastructure resource. Applies to Exadata Cloud@Customer instances only. * See {@link #createCloudExadataInfrastructureDetails(CreateCloudExadataInfrastructureDetailsRequest) createCloudExadataInfrastructureDetails} for information on creating a cloud Exadata infrastructure resource in an Exadata Cloud Service instance. * */ export interface CreateExadataInfrastructureDetails { /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. * */ "compartmentId": string; /** * The user-friendly name for the Exadata infrastructure. The name does not need to be unique. * */ "displayName": string; /** * The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance. * */ "shape": string; /** * The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.oracle.com/iaas/Content/Database/References/timezones.htm). * */ "timeZone": string; /** * The IP address for the first control plane server. */ "cloudControlPlaneServer1": string; /** * The IP address for the second control plane server. */ "cloudControlPlaneServer2": string; /** * The netmask for the control plane network. */ "netmask": string; /** * The gateway for the control plane network. */ "gateway": string; /** * The CIDR block for the Exadata administration network. */ "adminNetworkCIDR": string; /** * The CIDR block for the Exadata InfiniBand interconnect. */ "infiniBandNetworkCIDR": string; /** * The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible * for enhanced security. * */ "corporateProxy"?: string; /** * The list of contacts for the Exadata infrastructure. */ "contacts"?: Array; "maintenanceWindow"?: model.MaintenanceWindow; "maintenanceVersionPreferences"?: model.MaintenanceVersionPreferenceDetails; /** * The number of storage servers for the Exadata infrastructure. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "storageCount"?: number; /** * The number of compute servers for the Exadata infrastructure. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "computeCount"?: number; /** * Indicates if deployment is Multi-Rack or not. */ "isMultiRackDeployment"?: boolean; /** * The base64 encoded Multi-Rack configuration json file. */ "multiRackConfigurationFile"?: string; /** * The list of DNS server IP addresses. Maximum of 3 allowed. */ "dnsServer": Array; /** * The list of NTP server IP addresses. Maximum of 3 allowed. */ "ntpServer": Array; /** * Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration * for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time * using the UpdateExadatainfrastructure API. * */ "isCpsOfflineReportEnabled"?: boolean; "networkBondingModeDetails"?: model.NetworkBondingModeDetails; /** * The database server type of the Exadata infrastructure. */ "databaseServerType"?: string; /** * The storage server type of the Exadata infrastructure. */ "storageServerType"?: 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.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). *

Example: {@code {\"Department\": \"Finance\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. * For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; } export declare namespace CreateExadataInfrastructureDetails { function getJsonObj(obj: CreateExadataInfrastructureDetails): object; function getDeserializedJsonObj(obj: CreateExadataInfrastructureDetails): object; }