@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 590 B
TypeScript
import { type PodName } from './pod-name.js';
import { type NamespaceName } from '../../../../types/namespace/namespace-name.js';
import { ResourceReference } from '../resource-reference.js';
/**
* Represents a Kubernetes pod reference which includes the namespace name and pod name.
*/
export declare class PodReference extends ResourceReference<PodName> {
private constructor();
/**
* Creates a pod reference.
* @param namespace The namespace name.
* @param podName The pod name.
*/
static of(namespace: NamespaceName, podName: PodName): PodReference;
}