Class UsersIdpApi


  • @Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
               date="2024-04-19T18:26:37.866789Z[Etc/UTC]")
    public class UsersIdpApi
    extends Object
    • 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