@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
29 lines (28 loc) • 889 B
TypeScript
import { LoadImageArchiveOptions } from './load-image-archive-options.js';
export declare class LoadImageArchiveOptionsBuilder {
private _archivePath?;
private _name?;
private _nodes?;
private constructor();
static builder(): LoadImageArchiveOptionsBuilder;
/**
* Set the archive path.
* @param archivePath
*/
archivePath(archivePath: string): LoadImageArchiveOptionsBuilder;
/**
* Set the name of the cluster (default "kind").
* @param name
*/
name(name: string): LoadImageArchiveOptionsBuilder;
/**
* Set the nodes to load images into.
* @param nodes
*/
nodes(nodes: string): LoadImageArchiveOptionsBuilder;
/**
* Build the LoadImageArchiveOptions instance.
*/
build(): LoadImageArchiveOptions;
static from(options: LoadImageArchiveOptions): LoadImageArchiveOptionsBuilder;
}