// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class QueryPromInstallStatusRequest extends $dara.Model { /** * @remarks * The cluster ID. * * @example * cc7a37ee31aea4ed1a059eff8034b**** */ clusterId?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { clusterId: 'ClusterId', regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { clusterId: 'string', regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }