// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CleanClusterUserPermissionsRequest extends $dara.Model { /** * @remarks * Specifies whether to force delete the specified KubeConfig. Valid values: * - false (default): Before deleting the KubeConfig, the system checks whether cluster access records exist within the last seven days. If access records exist or cannot be retrieved, the deletion is not allowed. * - true: Force deletes the KubeConfig without checking cluster access records. * * @example * false */ force?: boolean; static names(): { [key: string]: string } { return { force: 'Force', }; } static types(): { [key: string]: any } { return { force: 'boolean', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }