fix(apiclient): Ensure mandatory parameter in CloudlyApiClient constructor
This commit is contained in:
@ -8,6 +8,11 @@ export interface IDeploymentDirective {
|
||||
id: string;
|
||||
name: string;
|
||||
imageClaim: string;
|
||||
/**
|
||||
* ports to be exposed
|
||||
* hostPort is the port on the host
|
||||
* containerPort is the port on the container
|
||||
*/
|
||||
ports: { hostPort: number; containerPort: number }[];
|
||||
environment: { [key: string]: string };
|
||||
resources?: IServiceRessources;
|
||||
|
Reference in New Issue
Block a user