@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines (18 loc) • 640 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import { type PodRef } from '../pod/pod_ref.js';
import { type ContainerName } from './container_name.js';
import { NestedResourceRef } from '../nested_resource_ref.js';
/**
* Represents a Kubernetes pod reference which includes the namespace name and pod name.
*/
export declare class ContainerRef extends NestedResourceRef<PodRef, ContainerName> {
private constructor();
/**
* Creates a container reference.
* @param podRef The namespace name.
* @param containerName The pod name.
*/
static of(podRef: PodRef, containerName: ContainerName): ContainerRef;
}