@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
21 lines • 628 B
JavaScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import { ResourceRef } from '../../resources/resource_ref.js';
/**
* Represents a Kubernetes PVC (persistent volume claim) reference which includes the namespace name and PVC name.
*/
export class PvcRef extends ResourceRef {
constructor(namespace, name) {
super(namespace, name);
}
/**
* Creates a PVC (persistent volume claim) reference.
* @param namespace The namespace name.
* @param pvcName The PVC name.
*/
static of(namespace, pvcName) {
return new PvcRef(namespace, pvcName);
}
}
//# sourceMappingURL=pvc_ref.js.map