/** * Oracle Cloud Migrations API * A description of the Oracle Cloud Migrations API. * OpenAPI spec version: 20220919 * * * 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. */ /** * The shape configuration requested for the instance. *

If the parameter is provided, the instance is created with the resources that you specify. If some * properties are missing or the entire parameter is not provided, the instance is created * with the default configuration values for the {@code shape} that you specify. *

Each shape only supports certain configurable values. If the values that you provide are not valid for the * specified {@code shape}, an error is returned. * */ export interface LaunchInstanceShapeConfigDetails { /** * The total number of OCPUs available to the instance. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "ocpus"?: number; /** * The total amount of memory in gigabytes that is available to the instance. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "memoryInGBs"?: number; /** * The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a * non-burstable instance, or explicitly specify non-burstable with {@code BASELINE_1_1}. *

The following values are supported: * - {@code BASELINE_1_8} - baseline usage is 1/8 of an OCPU. * - {@code BASELINE_1_2} - baseline usage is 1/2 of an OCPU. * - {@code BASELINE_1_1} - baseline usage is an entire OCPU. This represents a non-burstable instance. * */ "baselineOcpuUtilization"?: LaunchInstanceShapeConfigDetails.BaselineOcpuUtilization; } export declare namespace LaunchInstanceShapeConfigDetails { enum BaselineOcpuUtilization { Baseline18 = "BASELINE_1_8", Baseline12 = "BASELINE_1_2", Baseline11 = "BASELINE_1_1", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } function getJsonObj(obj: LaunchInstanceShapeConfigDetails): object; function getDeserializedJsonObj(obj: LaunchInstanceShapeConfigDetails): object; }