@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines • 591 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
import { ResourceReference } from '../resource-reference.js';
/**
* Represents a Kubernetes pod reference which includes the namespace name and pod name.
*/
export class PodReference extends ResourceReference {
constructor(namespace, name) {
super(namespace, name);
}
/**
* Creates a pod reference.
* @param namespace The namespace name.
* @param podName The pod name.
*/
static of(namespace, podName) {
return new PodReference(namespace, podName);
}
}
//# sourceMappingURL=pod-reference.js.map