/** * The UnqualifiedEntitiesDetail model module. * @module Ntnx/UnqualifiedEntitiesDetail * @version 4.3.1 * @class UnqualifiedEntitiesDetail */ export default class UnqualifiedEntitiesDetail { /** * Constructs a UnqualifiedEntitiesDetail from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:Ntnx/UnqualifiedEntitiesDetail} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/UnqualifiedEntitiesDetail} The populated UnqualifiedEntitiesDetail instance. */ static constructFromObject(data: any, obj?: any, callFromChild?: boolean): any; /** * Converts a given snake_case string to camelCase. * @param {string} snakeStr - The input string in snake_case format. * @returns {string} - The converted string in camelCase format. */ static snakeToCamel(snakeStr: string): string; $objectType: string; /** @type {object} */ $reserved: object; /** @type {object} */ $unknownFields: object; /** * Returns The name of the entity that was not applicable to the cluster. * @return {string} */ getEntityName(): string; /** * Sets The name of the entity that was not applicable to the cluster. * @param {string} entityName The name of the entity that was not applicable to the cluster. */ setEntityName(entityName: string): void; entityName: string; /** * Returns The version of the entity that was not applicable to the cluster. * @return {string} */ getVersion(): string; /** * Sets The version of the entity that was not applicable to the cluster. * @param {string} version The version of the entity that was not applicable to the cluster. */ setVersion(version: string): void; version: string; /** * Returns The reason why the upgrade from this bundle is not applicable for the entity on this cluster. * @return {string} */ getDeletedReason(): string; /** * Sets The reason why the upgrade from this bundle is not applicable for the entity on this cluster. * @param {string} deletedReason The reason why the upgrade from this bundle is not applicable for the entity on this cluster. */ setDeletedReason(deletedReason: string): void; deletedReason: string; /** * Returns The location (node or cluster) of the unqualified entity. * @return {string} */ getLocation(): string; /** * Sets The location (node or cluster) of the unqualified entity. * @param {string} location The location (node or cluster) of the unqualified entity. */ setLocation(location: string): void; location: string; get$Reserved(): any; get$ObjectType(): string; get$UnknownFields(): any; toJson(forMutation: any): any; validate(scope: any, properties: any, ...args: any[]): Promise; validateProperty(scope: any, property: any): ValidationError; #private; } import ValidationError from "../../../validation/ValidationError";