/** * Blockchain Platform Control Plane API * Blockchain Platform Control Plane API * OpenAPI spec version: 20191010 * * * 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"; /** * Blockchain Platform Instance Description Preview after Scaling. */ export interface ScaledBlockchainPlatformPreview { /** * unique identifier that is immutable on creation */ "id": string; /** * Platform Instance Display name, can be renamed */ "displayName": string; /** * Compartment Identifier */ "compartmentId": string; /** * Platform Instance Description */ "description"?: string; /** * Compute shape - STANDARD or ENTERPRISE_SMALL or ENTERPRISE_MEDIUM or ENTERPRISE_LARGE or ENTERPRISE_EXTRA_LARGE or ENTERPRISE_CUSTOM */ "computeShape": string; /** * Storage size in TBs Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "storageSizeInTBs"?: number; /** * Storage size in TBs post scaling Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "storageSizeInTBsPostScaling"?: number; "componentDetails"?: model.BlockchainPlatformComponentDetails; "replicas"?: model.ReplicaDetails; "componentDetailsPostScaling"?: model.BlockchainPlatformComponentDetails; "replicasPostScaling"?: model.ReplicaDetails; /** * List of OcpuUtilization for all hosts */ "hostOcpuUtilizationInfo"?: Array; /** * List of OcpuUtilization for all hosts after scaling */ "hostOcpuUtilizationInfoPostScaling"?: Array; /** * Number of new VMs that would be created Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "newVmCount"?: number; "meteringPreview"?: model.ScaledPlatformMeteringPreview; "scalePayload"?: model.ScaleBlockchainPlatformDetails; } export declare namespace ScaledBlockchainPlatformPreview { function getJsonObj(obj: ScaledBlockchainPlatformPreview): object; function getDeserializedJsonObj(obj: ScaledBlockchainPlatformPreview): object; }