import * as $dara from '@darabonba/typescript'; export declare class ListCredentialsRequest extends $dara.Model { /** * @remarks * Filters the results by credential type. * * @example * credentialAuthType */ credentialAuthType?: string; /** * @remarks * Filters the results by credential name. * * @example * credentialName */ credentialName?: string; /** * @remarks * Filters the results by credential source type. * * @example * credentialSourceType */ credentialSourceType?: string; /** * @remarks * Filters the results based on the credential\\"s enabled status. * * @example * False */ enabled?: boolean; /** * @remarks * The page number of the results to return. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of credentials to return per page. * * @example * 0 */ pageSize?: number; /** * @remarks * Filters the results by provider. * * @example * Aliyun */ provider?: string; /** * @remarks * Unique identifier of the workspace * * @example * ws-1 */ workspaceId?: string; /** * @remarks * Multiple workspace identifiers * * @example * ws-1,ws-2 */ workspaceIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }