// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeAutoProvisioningGroupHistoryRequest extends $dara.Model { /** * @remarks * The ID of the auto provisioning group. * * This parameter is required. * * @example * apg-bp67acfmxazb4p**** */ autoProvisioningGroupId?: string; /** * @remarks * The end of the time range of the queried data. The time follows the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2019-06-20T15:10:20Z */ endTime?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number of the returned page. Pages start from page 1. * * Default value: 1 * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Valid values: 1 to 100. * * and the default value is 10. * * @example * 5 */ pageSize?: number; /** * @remarks * The region ID of the auto provisioning group. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The beginning of the time range of the queried data. The time follows the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2019-04-01T15:10:20Z */ startTime?: string; static names(): { [key: string]: string } { return { autoProvisioningGroupId: 'AutoProvisioningGroupId', endTime: 'EndTime', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', pageNumber: 'PageNumber', pageSize: 'PageSize', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', startTime: 'StartTime', }; } static types(): { [key: string]: any } { return { autoProvisioningGroupId: 'string', endTime: 'string', ownerAccount: 'string', ownerId: 'number', pageNumber: 'number', pageSize: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', startTime: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }