// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class TerminateVirtualBorderRouterRequest extends $dara.Model { /** * @remarks * The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length. */ clientToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region where the VBR is deployed. You can call the `DescribeRegions` operation to obtain the region ID. * * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The client-side CIDR block. This parameter is required for a connection over an Express Connect circuit. */ userCidr?: string; /** * @remarks * The ID of the VBR. * * This parameter is required. */ vbrId?: string; static names(): { [key: string]: string } { return { clientToken: 'ClientToken', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', userCidr: 'UserCidr', vbrId: 'VbrId', }; } static types(): { [key: string]: any } { return { clientToken: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', userCidr: 'string', vbrId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }