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 typical server power-off. Data in the instance operating system that has not been written to storage devices is lost. We recommend that you redeploy instances that are already stopped. * * @example * false */ forceStop?: boolean; /** * @remarks * The instance ID of the instance that is in the Running or Stopped state. * * 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; }); }