// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GrafanaWorkspaceVpcRegion extends $dara.Model { /** * @example * cn-beijing */ regionId?: string; /** * @example * 华北2(北京) */ regionName?: string; static names(): { [key: string]: string } { return { regionId: 'regionId', regionName: 'regionName', }; } static types(): { [key: string]: any } { return { regionId: 'string', regionName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }