Class UsersIdpApi
- java.lang.Object
-
- app.cybrid.cybrid_api_id.client.api.UsersIdpApi
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2023-12-13T13:54:09.832467Z[Etc/UTC]") public class UsersIdpApi extends Object
-
-
Constructor Summary
Constructors Constructor Description UsersIdpApi()UsersIdpApi(ApiClient apiClient)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<UserIdpModel>createUser(PostUserIdpModel postUserIdpModel)Create user Creates a user.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UserIdpModel>>createUserWithHttpInfo(PostUserIdpModel postUserIdpModel)reactor.core.publisher.Mono<Void>disableUser(String userGuid)Disable User Disables a user.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>>disableUserWithHttpInfo(String userGuid)ApiClientgetApiClient()reactor.core.publisher.Mono<UserIdpModel>getUser(String userGuid)Get User Retrieves a user.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UserIdpModel>>getUserWithHttpInfo(String userGuid)reactor.core.publisher.Mono<UserListIdpModel>listUser(BigInteger page, BigInteger perPage, String guid)List users Retrieve a list users.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UserListIdpModel>>listUserWithHttpInfo(BigInteger page, BigInteger perPage, String guid)voidsetApiClient(ApiClient apiClient)
-
-
-
Constructor Detail
-
UsersIdpApi
public UsersIdpApi()
-
UsersIdpApi
@Autowired public UsersIdpApi(ApiClient apiClient)
-
-
Method Detail
-
getApiClient
public ApiClient getApiClient()
-
setApiClient
public void setApiClient(ApiClient apiClient)
-
createUser
public reactor.core.publisher.Mono<UserIdpModel> createUser(PostUserIdpModel postUserIdpModel) throws org.springframework.web.reactive.function.client.WebClientResponseException
Create user Creates a user.201 - User created
- Parameters:
postUserIdpModel- The postUserIdpModel parameter- Returns:
- UserIdpModel
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
createUserWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UserIdpModel>> createUserWithHttpInfo(PostUserIdpModel postUserIdpModel) throws org.springframework.web.reactive.function.client.WebClientResponseException
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException
-
disableUser
public reactor.core.publisher.Mono<Void> disableUser(String userGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
Disable User Disables a user. User is not deleted. Required scope: **users:execute**204 - User disabled
401 - Unauthorized - Authentication failed,
403 - Invalid scope
404 - user not found
- Parameters:
userGuid- Identifier for the user.- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
disableUserWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> disableUserWithHttpInfo(String userGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException
-
getUser
public reactor.core.publisher.Mono<UserIdpModel> getUser(String userGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
Get User Retrieves a user. Required scope: **users:read**200 - user found
401 - Unauthorized - Authentication failed,
403 - Invalid scope
404 - user not found
- Parameters:
userGuid- Identifier for the user.- Returns:
- UserIdpModel
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
getUserWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UserIdpModel>> getUserWithHttpInfo(String userGuid) throws org.springframework.web.reactive.function.client.WebClientResponseException
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException
-
listUser
public reactor.core.publisher.Mono<UserListIdpModel> listUser(BigInteger page, BigInteger perPage, String guid) throws org.springframework.web.reactive.function.client.WebClientResponseException
List users Retrieve a list users. Required scope: **users:read**200 - list users
- Parameters:
page- The page index to retrieve.perPage- The number of entities per page to return.guid- Comma separated guids to list users for.- Returns:
- UserListIdpModel
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
listUserWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UserListIdpModel>> listUserWithHttpInfo(BigInteger page, BigInteger perPage, String guid) throws org.springframework.web.reactive.function.client.WebClientResponseException
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException
-
-