@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 465 B
TypeScript
import { GatewayModelEnum } from './GatewayModelEnum';
import { CreateNetworkForGatewaySummary } from './CreateNetworkForGatewaySummary';
/** Input to create a gateway */
export interface CreateGateway {
/** Model of the gateway */
model: GatewayModelEnum;
/** Name of the gateway */
name: string;
/** Information to create the network for the gateway */
network: CreateNetworkForGatewaySummary;
}
//# sourceMappingURL=CreateGateway.d.ts.map