@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines (18 loc) • 612 B
TypeScript
import { type ObjectMeta } from '../../resources/object-meta.js';
import { type NamespaceName } from '../../../../types/namespace/namespace-name.js';
export declare class K8ClientObjectMeta implements ObjectMeta {
readonly namespace: NamespaceName;
readonly name: string;
readonly labels?: {
[key: string]: string;
};
readonly annotations?: {
[key: string]: string;
};
readonly uid?: string;
constructor(namespace: NamespaceName, name: string, labels?: {
[key: string]: string;
}, annotations?: {
[key: string]: string;
}, uid?: string);
}