@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
38 lines (37 loc) • 1.04 kB
TypeScript
import { type Options } from '../../request/options.js';
import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js';
/**
* Options for the `kind load image-archive` command.
*/
export declare class LoadImageArchiveOptions implements Options {
/**
* Path to the image archive to load.
*/
private readonly _archivePath;
/**
* The name of the cluster (default "kind")
*/
private readonly _name;
/**
* comma separated list of nodes to load images into
*/
private readonly _nodes;
constructor(archivePath?: string, name?: string, nodes?: string);
/**
* Apply the options to the KindExecutionBuilder.
* @param builder The KindExecutionBuilder to apply options to.
*/
apply(builder: KindExecutionBuilder): void;
/**
* The archive path.
*/
get archivePath(): string;
/**
* The name of the cluster.
*/
get name(): string;
/**
* The nodes to load images into.
*/
get nodes(): string;
}