import * as $dara from '@darabonba/typescript'; export declare class JoinSecurityGroupRequest extends $dara.Model { /** * @remarks * The ID of the instance. * * > If you specify this parameter, you must leave `NetworkInterfaceId` empty. * * @example * i-bp67acfmxazb4p**** */ instanceId?: string; /** * @remarks * The ID of the elastic network interface. * * > If you specify this parameter, you must leave `InstanceId` empty. * * @example * eni-bp13kd656hxambfe**** */ networkInterfaceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region. Call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to view the latest list of Alibaba Cloud regions. * * - This parameter is optional when you add an instance to a security group. * * - This parameter is required when you add an elastic network interface to a security group. The value must be the ID of the region where the elastic network interface is located. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the security group. Call [DescribeSecurityGroups](https://help.aliyun.com/document_detail/25556.html) to view your available security groups. * * This parameter is required. * * @example * sg-bp67acfmxazb4p**** */ securityGroupId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }