UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

87 lines 3.38 kB
// SPDX-License-Identifier: Apache-2.0 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; import { Exclude, Expose } from 'class-transformer'; let HelmChartSchema = class HelmChartSchema { name; namespace; release; repository; directory; version; labelSelector; containerName; ingressClassName; ingressControllerName; ingressControllerPrefix; constructor(name, namespace, release, repository, directory, version, labelSelector, containerName, ingressClassName, ingressControllerName, ingressControllerPrefix) { this.name = name || ''; this.namespace = namespace || ''; this.release = release || ''; this.repository = repository || ''; this.directory = directory || ''; this.version = version || ''; this.labelSelector = labelSelector || ''; this.containerName = containerName || ''; this.ingressClassName = ingressClassName || ''; this.ingressControllerName = ingressControllerName || ''; this.ingressControllerPrefix = ingressControllerPrefix || ''; } }; __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "name", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "namespace", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "release", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "repository", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "directory", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "version", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "labelSelector", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "containerName", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "ingressClassName", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "ingressControllerName", void 0); __decorate([ Expose(), __metadata("design:type", String) ], HelmChartSchema.prototype, "ingressControllerPrefix", void 0); HelmChartSchema = __decorate([ Exclude(), __metadata("design:paramtypes", [String, String, String, String, String, String, String, String, String, String, String]) ], HelmChartSchema); export { HelmChartSchema }; //# sourceMappingURL=helm-chart-schema.js.map