// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpgradeClusterAddonsResponseBody extends $dara.Model { /** * @remarks * The cluster ID. * * @example * cf4299b79b3e34226abfdc80a4bda**** */ clusterId?: string; /** * @remarks * The request ID. * * @example * bfd12953-31cb-42f1-8a36-7b80ec34**** */ requestId?: string; /** * @remarks * The task ID. * * @example * T-62a944794ee141074400**** */ taskId?: string; static names(): { [key: string]: string } { return { clusterId: 'cluster_id', requestId: 'request_id', taskId: 'task_id', }; } static types(): { [key: string]: any } { return { clusterId: 'string', requestId: 'string', taskId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }