@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines (12 loc) • 501 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {type ObjectMeta} from '../../resources/object-meta.js';
import {type NamespaceName} from '../../../../types/namespace/namespace-name.js';
export class K8ClientObjectMeta implements ObjectMeta {
public constructor(
public readonly namespace: NamespaceName,
public readonly name: string,
public readonly labels?: {[key: string]: string},
public readonly annotations?: {[key: string]: string},
public readonly uid?: string,
) {}
}