// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeClustersResponseBodyClustersCluster extends $dara.Model { clusterId?: string; static names(): { [key: string]: string } { return { clusterId: 'ClusterId', }; } static types(): { [key: string]: any } { return { clusterId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeClustersResponseBodyClusters extends $dara.Model { cluster?: DescribeClustersResponseBodyClustersCluster[]; static names(): { [key: string]: string } { return { cluster: 'Cluster', }; } static types(): { [key: string]: any } { return { cluster: { 'type': 'array', 'itemType': DescribeClustersResponseBodyClustersCluster }, }; } validate() { if(Array.isArray(this.cluster)) { $dara.Model.validateArray(this.cluster); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribeClustersResponseBody extends $dara.Model { clusters?: DescribeClustersResponseBodyClusters; requestId?: string; static names(): { [key: string]: string } { return { clusters: 'Clusters', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { clusters: DescribeClustersResponseBodyClusters, requestId: 'string', }; } validate() { if(this.clusters && typeof (this.clusters as any).validate === 'function') { (this.clusters as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }