/**
* The HelmJobDetails model module.
* @module Ntnx/HelmJobDetails
* @version 4.3.1
* @class HelmJobDetails
*
* @param { string } name Name of the Helm job chart.
*
* @param { string } version Version of the Helm job chart.
*/
export default class HelmJobDetails {
/**
* Constructs a HelmJobDetails 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/HelmJobDetails} obj Optional instance to populate.
* @param callFromChild {Boolean} Flag to recognise calling instance
* @return {module:Ntnx/HelmJobDetails} The populated HelmJobDetails 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;
/**
* Constructs a new HelmJobDetails.
* Details of a Helm job action.
* @alias module:Ntnx/HelmJobDetails
*
* @param { string } name Name of the Helm job chart.
*
* @param { string } version Version of the Helm job chart.
*/
constructor(name: string, version: string);
name: string;
version: string;
$objectType: string;
/** @type {object} */
$reserved: object;
/** @type {object} */
$unknownFields: object;
/**
* Returns Name of the Helm job chart.
* @return {string}
*/
getName(): string;
/**
* Sets Name of the Helm job chart.
* @param {string} name Name of the Helm job chart.
*/
setName(name: string): void;
/**
* Returns Version of the Helm job chart.
* @return {string}
*/
getVersion(): string;
/**
* Sets Version of the Helm job chart.
* @param {string} version Version of the Helm job chart.
*/
setVersion(version: string): void;
/**
* Returns Custom values passed to the Helm job.
* @return {CustomValue[]}
*/
getCustomValues(): CustomValue[];
/**
* Sets Custom values passed to the Helm job.
* @param {CustomValue[]} customValues Custom values passed to the Helm job.
*/
setCustomValues(customValues: CustomValue[]): void;
customValues: CustomValue[];
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 CustomValue from "./CustomValue";
import ValidationError from "../../../validation/ValidationError";