/** * 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. */ import * as model from "../model"; /** * OLVM Cluster properties. */ export interface OlvmClusterProperties { /** * A human-readable name in plain text. */ "clusterName": string; /** * A human-readable description in plain text. */ "clusterDescription"?: string; /** * Free text containing comments about this object. */ "comment"?: string; /** * Whether ballooning is enabled. */ "isBallooningEnabled"?: boolean; "biosType"?: model.OlvmBiosType; "cpu"?: model.OlvmCpu; /** * Custom scheduling policy properties of the cluster. */ "customSchedulingPolicyProperties"?: Array; "display"?: model.OlvmDisplay; "errorHandling"?: model.OlvmErrorHandling; "fencingPolicy"?: model.OlvmFencingPolicy; /** * FIPS mode of the cluster. */ "fipsMode"?: OlvmClusterProperties.FipsMode; /** * The type of firewall to be used on hosts in this cluster. */ "firewallType"?: OlvmClusterProperties.FirewallType; /** * Indicates if Gluster service is used. */ "isGlusterService"?: boolean; /** * The name of the tuned profile. */ "glusterTunedProfile"?: string; /** * Indicates whether HA reservation is enabled. */ "isHaReservation"?: boolean; "ksm"?: model.Ksm; /** * The memory consumption threshold for logging audit log events Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "logMaxMemoryUsedThreshold"?: number; /** * The memory consumption threshold type for logging audit log events. */ "logMaxMemoryUsedThresholdType"?: OlvmClusterProperties.LogMaxMemoryUsedThresholdType; "memoryPolicy"?: model.OlvmMemoryPolicy; "migrationPolicy"?: model.OlvmMigrationOptions; /** * Set of random number generator (RNG) sources required from each host in the cluster. */ "requiredRngSources"?: Array; "serialNumber"?: model.OlvmSerialNumber; /** * List of supported versions. */ "supportedVersions"?: Array; /** * Describes all switch types supported by the Manager */ "switchType"?: OlvmClusterProperties.SwitchType; /** * Indicates if threads should be used as cores */ "isUseThreadsAsCores"?: boolean; /** * Indicates if trusted service is enabled */ "isTrustedService"?: boolean; /** * Indicates if tunnel migration is enabled */ "isTunnelMigration"?: boolean; /** * The upgrade correlation identifier. */ "upgradeCorrelationId"?: string; /** * Indicates if an upgrade has been started for the cluster. */ "isUpdateInProgress"?: boolean; /** * If an upgrade is in progress, the upgrade???s reported percent complete. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "upgradePercentComplete"?: number; "version"?: model.OlvmVersion; /** * Indicates if virt service is enabled. */ "isVirtService"?: boolean; /** * Indicates if VNC encryption is enabled. */ "isVncEncryption"?: boolean; /** * List of data centers where storage domain belongs */ "dataCenters"?: Array; } export declare namespace OlvmClusterProperties { enum FipsMode { Disabled = "DISABLED", Enabled = "ENABLED", Undefined = "UNDEFINED" } enum FirewallType { Firewalld = "FIREWALLD", Iptables = "IPTABLES" } enum LogMaxMemoryUsedThresholdType { AbsoluteValueInMb = "ABSOLUTE_VALUE_IN_MB", Percentage = "PERCENTAGE" } enum SwitchType { Legacy = "LEGACY", Ovs = "OVS" } function getJsonObj(obj: OlvmClusterProperties): object; function getDeserializedJsonObj(obj: OlvmClusterProperties): object; }