import * as $dara from '@darabonba/typescript'; export declare class UpdateControlPlaneLogRequest extends $dara.Model { /** * @remarks * The Alibaba Cloud account ID. * * @example * 162981***** * * **if can be null:** * true */ aliuid?: string; /** * @remarks * The list of components for which control plane logging is enabled. */ components?: string[]; /** * @remarks * The name of the SLS project used to store control plane component logs. * * Default value: k8s-log-$Cluster ID. * * @example * k8s-log-c5b5e80b0b64a4bf6939d2d8fbbc5**** * * **if can be null:** * true */ logProject?: string; /** * @remarks * The retention period of logs in the SLS Logstore. Valid values: 1 to 3000. Unit: days. * * Default value: 30 days. * * @example * 30 * * **if can be null:** * true */ logTtl?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }