import * as $dara from '@darabonba/typescript'; export declare class DescribeClusterUserKubeconfigRequest extends $dara.Model { /** * @remarks * Specifies whether to obtain the internal network connection configuration. Valid values: * - `true`: Obtains only the internal network connection credential. * - `false`: Obtains only the public network connection credential. * * Default value: `false`. * * @example * false */ privateIpAddress?: boolean; /** * @remarks * The validity period of the temporary KubeConfig. Unit: minutes. Valid values: 15 (15 minutes) to 4320 (3 days). * >If you do not set this parameter, the system automatically determines a longer validity period. The specific expiration time is determined by the value of the `expiration` field in the response. * * @example * 15 */ temporaryDurationMinutes?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }