UNPKG

@hashgraph/solo

Version:

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

22 lines 775 B
import { K8ClientService } from '../kube/k8_client/resources/service/k8_client_service.js'; export class SoloService extends K8ClientService { metadata; spec; status; clusterRef; context; deployment; constructor(metadata, spec, status, clusterRef, context, deployment) { super(metadata, spec, status); this.metadata = metadata; this.spec = spec; this.status = status; this.clusterRef = clusterRef; this.context = context; this.deployment = deployment; } static getFromK8Service(service, clusterRef, context, deployment) { return new SoloService(service.metadata, service.spec, service.status, clusterRef, context, deployment); } } //# sourceMappingURL=solo_service.js.map