// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class OpenAckServiceRequest extends $dara.Model { /** * @remarks * The type of service to activate. Valid values: * * - `propayasgo`: Container Service for Kubernetes (including ACK managed clusters and ACK dedicated clusters), Container Service Serverless, and registered clusters. * - `edgepayasgo`: Container Service Edge. * * @example * propayasgo */ type?: string; static names(): { [key: string]: string } { return { type: 'type', }; } static types(): { [key: string]: any } { return { type: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }