import * as $dara from '@darabonba/typescript'; export declare class DescribeAutoProvisioningGroupsRequestTag extends $dara.Model { /** * @remarks * The key of tag N that is added to the auto provisioning group. * * Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun. * * @example * TestKey */ key?: string; /** * @remarks * The value of tag N that is added to the auto provisioning group. * * Valid values of N: 1 to 20. The tag value can be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAutoProvisioningGroupsRequest extends $dara.Model { /** * @remarks * The ID of the auto provisioning group. You can specify up to 20 IDs. * * @example * apg-sn54avj8htgvtyh8**** */ autoProvisioningGroupId?: string[]; /** * @remarks * The name of the auto provisioning group. * * @example * testAutoProvisioningGroupName */ autoProvisioningGroupName?: string; /** * @remarks * The status of the auto provisioning group. * * @example * active */ autoProvisioningGroupStatus?: string[]; autoProvisioningGroupTypes?: string[]; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. * * Pages start from page 1. * * Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * Valid values: 1 to 100. * * Default value: 10. * * @example * 2 */ pageSize?: number; /** * @remarks * The region ID of the auto provisioning group. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group to which the auto provisioning group belongs. * * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The tags that are added to the auto provisioning group. */ tag?: DescribeAutoProvisioningGroupsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }