@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines (18 loc) • 657 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import { ResourceRef } from '../../resources/resource_ref.js';
import { type NamespaceName } from '../namespace/namespace_name.js';
import { type PvcName } from './pvc_name.js';
/**
* Represents a Kubernetes PVC (persistent volume claim) reference which includes the namespace name and PVC name.
*/
export declare class PvcRef extends ResourceRef<PvcName> {
private constructor();
/**
* Creates a PVC (persistent volume claim) reference.
* @param namespace The namespace name.
* @param pvcName The PVC name.
*/
static of(namespace: NamespaceName, pvcName: PvcName): PvcRef;
}