@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
28 lines (27 loc) • 1.06 kB
TypeScript
import { type NamespaceName } from '../../../../types/namespace/namespace-name.js';
import { type Service } from './service.js';
import { type ServiceReference } from './service-reference.js';
export interface Services {
/**
* Get a svc by name
* @param namespace - namespace
* @param name - service name
*/
read(namespace: NamespaceName, name: string): Promise<Service>;
/**
* List all services in a namespace
* @param namespace - namespace
* @param labels - labels
*/
list(namespace: NamespaceName, labels?: string[]): Promise<Service[]>;
/**
* Create a service
* @param serviceReference - service reference
* @param labels - the labels for the service
* @param servicePort - the service port
* @param podTargetPort - the target port
* @returns the service
* @throws {SoloError} if the service could not be created
*/
create(serviceReference: ServiceReference, labels: Record<string, string>, servicePort: number, podTargetPort: number): Promise<Service>;
}