// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeSubaccountK8sClusterUserConfigResponseBody extends $dara.Model { /** * @remarks * The KubeConfig of the cluster. * * This parameter is required. * * @example * apiVersion: v1\\nclusters:\\n- cluster:\\n server: https://114.55.xx.xx:6443\\n certificate-authority-data: LS0tLS**** */ config?: string; /** * @remarks * The expiration time of the KubeConfig. Format: UTC time in RFC 3339 format. * * @example * 2028-04-09T06:20:47Z */ expiration?: string; static names(): { [key: string]: string } { return { config: 'config', expiration: 'expiration', }; } static types(): { [key: string]: any } { return { config: 'string', expiration: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }