/** * The NodeSchedulableStatus model module. * @module Ntnx/NodeSchedulableStatus * @version 4.4.1 * @class NodeSchedulableStatus * @extends ExternalizableAbstractModel */ export default class NodeSchedulableStatus extends ExternalizableAbstractModel { /** * Returns The boolean value to indicate whether or not node is a storage only node * @return {boolean} */ getIsNeverSchedulable(): boolean; /** * Sets The boolean value to indicate whether or not node is a storage only node * @param {boolean} isNeverSchedulable The boolean value to indicate whether or not node is a storage only node */ setIsNeverSchedulable(isNeverSchedulable: boolean): void; isNeverSchedulable: boolean; #private; } import ExternalizableAbstractModel from "../../../common/v1/response/ExternalizableAbstractModel";