// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateEnvironmentRequest extends $dara.Model { /** * @remarks * The language. Valid values: zh and en. Default value: zh. * * @example * zh */ aliyunLang?: string; /** * @remarks * The environment ID. * * This parameter is required. * * @example * env-xxxxx */ environmentId?: string; /** * @remarks * The name of the environment instance. * * @example * env1 */ environmentName?: string; /** * @remarks * The payable resource plan. Valid values: * * * If the EnvironmentType parameter is set to CS, set the value to CS_Basic or CS_Pro. Default value: CS_Basic. * * Otherwise, leave the parameter empty. * * @example * CS_Basic */ feePackage?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { aliyunLang: 'AliyunLang', environmentId: 'EnvironmentId', environmentName: 'EnvironmentName', feePackage: 'FeePackage', regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { aliyunLang: 'string', environmentId: 'string', environmentName: 'string', feePackage: 'string', regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }