UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

23 lines (22 loc) 757 B
/** * SPDX-License-Identifier: Apache-2.0 */ import { ResourceName } from '../../resources/resource_name.js'; /** * Represents a Kubernetes PVC (persistent volume claim) name. A Kubernetes PVC name must be a valid RFC-1123 DNS label. * * @include DNS_1123_LABEL */ export declare class PvcName extends ResourceName { private constructor(); /** * Creates a PVC (persistent volume claim). A Kubernetes PVC name must be a valid RFC-1123 DNS label. * * @include DNS_1123_LABEL * * @param name The name of the PVC (persistent volume claim). * @returns An instance of PvcName. * @throws InvalidResourceNameError if the PVC (persistent volume claim) name is invalid. */ static of(name: string): PvcName; }