import * as $dara from '@darabonba/typescript'; export declare class RedeployInstanceRequest extends $dara.Model { /** * @remarks * Specifies whether to forcefully stop the instance that is in the Running state. * * Default value: false. * * > A forced stop is equivalent to a power outage and can result in loss of data that is not written to storage devices. We recommend that you redeploy instances when they are in the Stopped state. * * @example * false */ forceStop?: boolean; /** * @remarks * The ID of the instance. * * This parameter is required. * * @example * i-bp1azkttqpldxgted**** */ instanceId?: string; ownerAccount?: string; ownerId?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }