import * as $dara from '@darabonba/typescript'; export declare class ModifySecurityGroupAttributeRequest extends $dara.Model { /** * @remarks * The new description of the security group. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`. * * By default, the parameter is empty, which indicates that the description remains unchanged. * * @example * TestDescription */ description?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the security group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The security group ID. * * This parameter is required. * * @example * sg-bp67acfmxazb4p**** */ securityGroupId?: string; /** * @remarks * The new name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-). * * By default, the parameter is empty, which indicates that the name remains unchanged. * * @example * SecurityGroupTestName */ securityGroupName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }