Uses of Record Class
co.ankatech.ankasecure.sdk.model.KeyFilters
Packages that use KeyFilters
Package
Description
-
Uses of KeyFilters in co.ankatech.ankasecure.sdk
Methods in co.ankatech.ankasecure.sdk with parameters of type KeyFiltersModifier and TypeMethodDescriptionAuthenticatedSdk.listAllKeys(KeyFilters filters) Lists ALL keys matching the filters by auto-paginating through the server's paginated listing (the AWS-CLI pattern: the API pages, the client iterates).AuthenticatedSdk.listKeys(KeyFilters filters, int page, int size) Lists ONE PAGE of the keys accessible to the authenticated client. -
Uses of KeyFilters in co.ankatech.ankasecure.sdk.internal.service.impl
Methods in co.ankatech.ankasecure.sdk.internal.service.impl with parameters of type KeyFiltersModifier and TypeMethodDescriptionKeyManagementServiceImpl.listAllKeys(KeyFilters filters) KeyManagementServiceImpl.listKeys(KeyFilters filters, int page, int size) -
Uses of KeyFilters in co.ankatech.ankasecure.sdk.model
Methods in co.ankatech.ankasecure.sdk.model that return KeyFiltersModifier and TypeMethodDescriptionstatic KeyFiltersKeyFilters.none()An unfiltered listing (all keys of the tenant). -
Uses of KeyFilters in co.ankatech.ankasecure.sdk.operations
Methods in co.ankatech.ankasecure.sdk.operations with parameters of type KeyFiltersModifier and TypeMethodDescriptionKeyManagementOperations.listAllKeys(KeyFilters filters) Lists ALL keys matching the filters via client-side auto-pagination (bounded; throws PaginationCeilingExceededException beyond the hard cap).KeyManagementOperations.listKeys(KeyFilters filters, int page, int size) Lists ONE PAGE of keys with optional server-side filters (applied BEFORE pagination — the page totals are filtered, tenant-scoped counts).