node-ovh-ts
Version:
OVH API wrapper library for TypeScript
22 lines (19 loc) • 762 B
TypeScript
import { CloudKubeNodePoolTemplate } from './CloudKubeNodePoolTemplate.js';
import { CloudProjectKubeNodePoolAutoscalingParams } from './CloudProjectKubeNodePoolAutoscalingParams.js';
import './CloudKubeNodePoolTemplateSpec.js';
import './CloudKubeTaint.js';
import './CloudKubeTaintEffectEnum.js';
import './CloudKubeNodePoolTemplateMetadata.js';
type CloudProjectKubeNodePoolCreation = {
antiAffinity?: boolean | null;
autoscale?: boolean | null;
autoscaling?: CloudProjectKubeNodePoolAutoscalingParams;
desiredNodes?: number;
flavorName: string;
maxNodes?: number;
minNodes?: number;
monthlyBilled?: boolean | null;
name?: string;
template?: CloudKubeNodePoolTemplate;
};
export { CloudProjectKubeNodePoolCreation };