@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
30 lines (29 loc) • 915 B
TypeScript
import { type Options } from '../../request/options.js';
import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js';
/**
* Options for the `kind cluster delete` command.
*/
export declare class ClusterDeleteOptions implements Options {
/**
* The name of the cluster.
*/
private readonly _name;
/**
* If set, sets the kubeconfig path instead of using $KUBECONFIG or $HOME/.kube/config.
*/
private readonly _kubeconfig;
constructor(name?: string, kubeconfig?: string);
/**
* Apply the options to the KindExecutionBuilder.
* @param builder The KindExecutionBuilder to apply options to.
*/
apply(builder: KindExecutionBuilder): void;
/**
* The name of the cluster.
*/
get name(): string;
/**
* sets kubeconfig path instead of $KUBECONFIG or $HOME/.kube/config
*/
get kubeconfig(): string;
}