/** * The DisplayNameMapping model module. * @module Ntnx/DisplayNameMapping * @version 4.3.1 * @class DisplayNameMapping */ export default class DisplayNameMapping { /** * Constructs a DisplayNameMapping 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/DisplayNameMapping} obj Optional instance to populate. * @param callFromChild {Boolean} Flag to recognise calling instance * @return {module:Ntnx/DisplayNameMapping} The populated DisplayNameMapping 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 Vendor-specific attribute name for mode * @return {string} */ getMode(): string; /** * Sets Vendor-specific attribute name for mode * @param {string} mode Vendor-specific attribute name for mode */ setMode(mode: string): void; mode: string; /** * Returns Vendor-specific attribute name for tags * @return {string} */ getTags(): string; /** * Sets Vendor-specific attribute name for tags * @param {string} tags Vendor-specific attribute name for tags */ setTags(tags: string): void; tags: string; /** * Returns Vendor-specific attribute name for domain * @return {string} */ getDomain(): string; /** * Sets Vendor-specific attribute name for domain * @param {string} domain Vendor-specific attribute name for domain */ setDomain(domain: string): void; domain: string; /** * Returns Vendor-specific attribute name for groups * @return {string} */ getGroups(): string; /** * Sets Vendor-specific attribute name for groups * @param {string} groups Vendor-specific attribute name for groups */ setGroups(groups: string): void; groups: 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";