Uses of Class
org.apache.syncope.ext.openfga.client.ApiResponse
Packages that use ApiResponse
-
Uses of ApiResponse in org.apache.syncope.ext.openfga.client
Methods in org.apache.syncope.ext.openfga.client that return ApiResponse -
Uses of ApiResponse in org.apache.syncope.ext.openfga.client.api
Methods in org.apache.syncope.ext.openfga.client.api that return ApiResponseModifier and TypeMethodDescriptionRelationshipQueriesApi.batchCheckWithHttpInfo
(String storeId, BatchCheckRequest body) Send a list of `check` operations in a single request The `BatchCheck` API functions nearly identically to `Check`, but instead of checking a single user-object relationship BatchCheck accepts a list of relationships to check and returns a map containing `BatchCheckItem` response for each check it received.RelationshipQueriesApi.checkWithHttpInfo
(String storeId, CheckRequest body) Check whether a user is authorized to access an object The Check API returns whether a given user has a relationship with a given object in a given store.StoresApi.createStoreWithHttpInfo
(CreateStoreRequest body) Create a store Create a unique OpenFGA store which will be used to store authorization models and relationship tuples.StoresApi.deleteStoreWithHttpInfo
(String storeId) Delete a store Delete an OpenFGA store.RelationshipQueriesApi.expandWithHttpInfo
(String storeId, ExpandRequest body) Expand all relationships in userset tree format, and following userset rewrite rules.StoresApi.getStoreWithHttpInfo
(String storeId) Get a store Returns an OpenFGA store by its identifierRelationshipQueriesApi.listObjectsWithHttpInfo
(String storeId, ListObjectsRequest body) List all objects of the given type that the user has a relation with The ListObjects API returns a list of all the objects of the given type that the user has a relation with.StoresApi.listStoresWithHttpInfo
(Integer pageSize, String continuationToken, String name) List all stores Returns a paginated list of OpenFGA stores and a continuation token to get additional stores.RelationshipQueriesApi.listUsersWithHttpInfo
(String storeId, ListUsersRequest body) List the users matching the provided filter who have a certain relation to a particular type.AssertionsApi.readAssertionsWithHttpInfo
(String storeId, String authorizationModelId) Read assertions for an authorization model ID The ReadAssertions API will return, for a given authorization model id, all the assertions stored for it.AuthorizationModelsApi.readAuthorizationModelsWithHttpInfo
(String storeId, Integer pageSize, String continuationToken) Return all the authorization models for a particular store The ReadAuthorizationModels API will return all the authorization models for a certain store.AuthorizationModelsApi.readAuthorizationModelWithHttpInfo
(String storeId, String id) Return a particular version of an authorization model The ReadAuthorizationModel API returns an authorization model by its identifier.RelationshipTuplesApi.readChangesWithHttpInfo
(String storeId, String type, Integer pageSize, String continuationToken, OffsetDateTime startTime) Return a list of all the tuple changes The ReadChanges API will return a paginated list of tuple changes (additions and deletions) that occurred in a given store, sorted by ascending time.RelationshipTuplesApi.readWithHttpInfo
(String storeId, ReadRequest body) Get tuples from the store that matches a query, without following userset rewrite rules The Read API will return the tuples for a certain store that match a query filter specified in the body of the request.RelationshipQueriesApi.streamedListObjectsWithHttpInfo
(String storeId, ListObjectsRequest body) Stream all objects of the given type that the user has a relation with The Streamed ListObjects API is very similar to the the ListObjects API, with two differences: 1.AssertionsApi.writeAssertionsWithHttpInfo
(String storeId, String authorizationModelId, WriteAssertionsRequest body) Upsert assertions for an authorization model ID The WriteAssertions API will upsert new assertions for an authorization model id, or overwrite the existing ones.AuthorizationModelsApi.writeAuthorizationModelWithHttpInfo
(String storeId, WriteAuthorizationModelRequest body) Create a new authorization model The WriteAuthorizationModel API will add a new authorization model to a store.RelationshipTuplesApi.writeWithHttpInfo
(String storeId, WriteRequest body) Add or delete tuples from the store The Write API will transactionally update the tuples for a certain store.