/** * The History model module. * @module Ntnx/History * @version 4.3.1 * @class History */ declare class History { /** * Constructs a History 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/History} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/History} The populated History 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; /** * @return {string} */ getName(): string; /** * @param {string} name */ setName(name: string): void; name: string; /** * @return {string} */ getVersion(): string; /** * @param {string} version */ setVersion(version: string): void; version: string; /** * @return {string} */ getApptype(): string; /** * @param {string} apptype */ setApptype(apptype: string): void; apptype: string; /** * @return {string} */ getClusterUuid(): string; /** * @param {string} clusterUuid */ setClusterUuid(clusterUuid: string): void; clusterUuid: string; /** * @return {string} */ getExtId(): string; /** * @param {string} extId */ setExtId(extId: string): void; extId: string; /** * @return {string} */ getParentAppUuid(): string; /** * @param {string} parentAppUuid */ setParentAppUuid(parentAppUuid: string): void; parentAppUuid: string; /** * @return {string} */ getAction(): string; /** * @param {string} action */ setAction(action: string): void; action: string; /** * @return {string} */ getStatus(): string; /** * @param {string} status */ setStatus(status: string): void; status: string; /** * @return {string} */ getMessage(): string; /** * @param {string} message */ setMessage(message: string): void; message: string; /** * @return {string} */ getTaskUuid(): string; /** * @param {string} taskUuid */ setTaskUuid(taskUuid: string): void; taskUuid: string; /** * @return {Date} */ getCreatedTimestamp(): Date; /** * @param {Date} createdTimestamp */ setCreatedTimestamp(createdTimestamp: Date): void; createdTimestamp: Date; 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; } declare namespace History { namespace ApptypeEnum { const SERVICE: string; const APPLICATION: string; } /** * * */ type ApptypeEnum = string; } export default History; import ValidationError from "../../../validation/ValidationError";