@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 638 B
TypeScript
import { type NamespaceName } from '../../../../types/namespace/namespace-name.js';
import { ResourceReference } from '../resource-reference.js';
import { type ServiceName } from './service-name.js';
/**
* Represents a Kubernetes service reference which includes the namespace name and service name.
*/
export declare class ServiceReference extends ResourceReference<ServiceName> {
private constructor();
/**
* Creates a service reference.
* @param namespace The namespace name.
* @param serviceName The service name.
*/
static of(namespace: NamespaceName, serviceName: ServiceName): ServiceReference;
}