import * as $dara from '@darabonba/typescript'; export declare class DeleteAutoProvisioningGroupRequest extends $dara.Model { /** * @remarks * The ID of the auto provisioning group. * * This parameter is required. * * @example * apg-bpuf6jel2bbl62wh13**** */ autoProvisioningGroupId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the auto provisioning group. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * Specifies whether to release instances in the auto provisioning group. Valid values: * * * true * * false * * > By default, this parameter inherits the value of `TerminateInstances` that you specified when you call the `CreateAutoProvisioningGroup` operation to create an auto provisioning group. You can also change the value of `TerminateInstances` when you call the DeleteAutoProvisioningGroup operation to delete the auto provisioning group. * * @example * true */ terminateInstances?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }