Class AnalyticsApi
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<ChartAuthenticatedEntity> createChartRequest(UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, String winkVersion) Create Chart Creates a new chart request.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ChartAuthenticatedEntity>> createChartRequestWithHttpInfo(UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, String winkVersion) Create Chart Creates a new chart request.org.springframework.web.reactive.function.client.WebClient.ResponseSpeccreateChartRequestWithResponseSpec(UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, String winkVersion) Create Chart Creates a new chart request.reactor.core.publisher.Mono<RemoveEntryResponseAuthenticatedEntity> removeChartRequest(String chartIdentifier, String winkVersion, String accept) Remove Chart Remove chart request for specific identifier.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<RemoveEntryResponseAuthenticatedEntity>> removeChartRequestWithHttpInfo(String chartIdentifier, String winkVersion, String accept) Remove Chart Remove chart request for specific identifier.org.springframework.web.reactive.function.client.WebClient.ResponseSpecremoveChartRequestWithResponseSpec(String chartIdentifier, String winkVersion, String accept) Remove Chart Remove chart request for specific identifier.voidsetApiClient(ApiClient apiClient) reactor.core.publisher.Mono<PageLineChartNonAuthenticatedEntity> showAnalyticsGrid(StateNonAuthenticatedEntity stateNonAuthenticatedEntity, String winkVersion) Show Analytics Grid Show paginated analytics.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<PageLineChartNonAuthenticatedEntity>> showAnalyticsGridWithHttpInfo(StateNonAuthenticatedEntity stateNonAuthenticatedEntity, String winkVersion) Show Analytics Grid Show paginated analytics.org.springframework.web.reactive.function.client.WebClient.ResponseSpecshowAnalyticsGridWithResponseSpec(StateNonAuthenticatedEntity stateNonAuthenticatedEntity, String winkVersion) Show Analytics Grid Show paginated analytics.reactor.core.publisher.Flux<LineChartNonAuthenticatedEntity> showAnalyticsList(String winkVersion, String accept) Show Analytics Show analytics.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<List<LineChartNonAuthenticatedEntity>>> showAnalyticsListWithHttpInfo(String winkVersion, String accept) Show Analytics Show analytics.org.springframework.web.reactive.function.client.WebClient.ResponseSpecshowAnalyticsListWithResponseSpec(String winkVersion, String accept) Show Analytics Show analytics.reactor.core.publisher.Mono<ChartAuthenticatedEntity> showChartRequest(String chartIdentifier, String winkVersion, String accept) Show Chart Displays a single chart request by identifier.reactor.core.publisher.Flux<ChartAuthenticatedEntity> showChartRequests(String winkVersion, String accept) Show Charts Displays all charts for caller.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<List<ChartAuthenticatedEntity>>> showChartRequestsWithHttpInfo(String winkVersion, String accept) Show Charts Displays all charts for caller.org.springframework.web.reactive.function.client.WebClient.ResponseSpecshowChartRequestsWithResponseSpec(String winkVersion, String accept) Show Charts Displays all charts for caller.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ChartAuthenticatedEntity>> showChartRequestWithHttpInfo(String chartIdentifier, String winkVersion, String accept) Show Chart Displays a single chart request by identifier.org.springframework.web.reactive.function.client.WebClient.ResponseSpecshowChartRequestWithResponseSpec(String chartIdentifier, String winkVersion, String accept) Show Chart Displays a single chart request by identifier.reactor.core.publisher.Mono<ChartAuthenticatedEntity> updateChartRequest(String chartIdentifier, UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, String winkVersion) Update Chart Updates an existing chart request by identifier.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ChartAuthenticatedEntity>> updateChartRequestWithHttpInfo(String chartIdentifier, UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, String winkVersion) Update Chart Updates an existing chart request by identifier.org.springframework.web.reactive.function.client.WebClient.ResponseSpecupdateChartRequestWithResponseSpec(String chartIdentifier, UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, String winkVersion) Update Chart Updates an existing chart request by identifier.
-
Constructor Details
-
AnalyticsApi
public AnalyticsApi() -
AnalyticsApi
-
-
Method Details
-
getApiClient
-
setApiClient
-
createChartRequest
public reactor.core.publisher.Mono<ChartAuthenticatedEntity> createChartRequest(@Nonnull UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Create Chart Creates a new chart request.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
201 - Created
- Parameters:
upsertChartRequestAuthenticatedEntity- The upsertChartRequestAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ChartAuthenticatedEntity
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
createChartRequestWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ChartAuthenticatedEntity>> createChartRequestWithHttpInfo(@Nonnull UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Create Chart Creates a new chart request.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
201 - Created
- Parameters:
upsertChartRequestAuthenticatedEntity- The upsertChartRequestAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<ChartAuthenticatedEntity>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
createChartRequestWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec createChartRequestWithResponseSpec(@Nonnull UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Create Chart Creates a new chart request.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
201 - Created
- Parameters:
upsertChartRequestAuthenticatedEntity- The upsertChartRequestAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeChartRequest
public reactor.core.publisher.Mono<RemoveEntryResponseAuthenticatedEntity> removeChartRequest(@Nonnull String chartIdentifier, @Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Remove Chart Remove chart request for specific identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierwinkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- RemoveEntryResponseAuthenticatedEntity
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeChartRequestWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<RemoveEntryResponseAuthenticatedEntity>> removeChartRequestWithHttpInfo(@Nonnull String chartIdentifier, @Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Remove Chart Remove chart request for specific identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierwinkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseEntity<RemoveEntryResponseAuthenticatedEntity>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeChartRequestWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec removeChartRequestWithResponseSpec(@Nonnull String chartIdentifier, @Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Remove Chart Remove chart request for specific identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierwinkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAnalyticsGrid
public reactor.core.publisher.Mono<PageLineChartNonAuthenticatedEntity> showAnalyticsGrid(@Nonnull StateNonAuthenticatedEntity stateNonAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Analytics Grid Show paginated analytics.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
stateNonAuthenticatedEntity- The stateNonAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- PageLineChartNonAuthenticatedEntity
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAnalyticsGridWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<PageLineChartNonAuthenticatedEntity>> showAnalyticsGridWithHttpInfo(@Nonnull StateNonAuthenticatedEntity stateNonAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Analytics Grid Show paginated analytics.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
stateNonAuthenticatedEntity- The stateNonAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<PageLineChartNonAuthenticatedEntity>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAnalyticsGridWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec showAnalyticsGridWithResponseSpec(@Nonnull StateNonAuthenticatedEntity stateNonAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Analytics Grid Show paginated analytics.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
stateNonAuthenticatedEntity- The stateNonAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAnalyticsList
public reactor.core.publisher.Flux<LineChartNonAuthenticatedEntity> showAnalyticsList(@Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Analytics Show analytics.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
winkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- List<LineChartNonAuthenticatedEntity>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAnalyticsListWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<List<LineChartNonAuthenticatedEntity>>> showAnalyticsListWithHttpInfo(@Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Analytics Show analytics.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
winkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseEntity<List<LineChartNonAuthenticatedEntity>>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAnalyticsListWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec showAnalyticsListWithResponseSpec(@Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Analytics Show analytics.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
winkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showChartRequest
public reactor.core.publisher.Mono<ChartAuthenticatedEntity> showChartRequest(@Nonnull String chartIdentifier, @Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Chart Displays a single chart request by identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierwinkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ChartAuthenticatedEntity
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showChartRequestWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ChartAuthenticatedEntity>> showChartRequestWithHttpInfo(@Nonnull String chartIdentifier, @Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Chart Displays a single chart request by identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierwinkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseEntity<ChartAuthenticatedEntity>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showChartRequestWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec showChartRequestWithResponseSpec(@Nonnull String chartIdentifier, @Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Chart Displays a single chart request by identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierwinkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showChartRequests
public reactor.core.publisher.Flux<ChartAuthenticatedEntity> showChartRequests(@Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Charts Displays all charts for caller.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
winkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- List<ChartAuthenticatedEntity>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showChartRequestsWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<List<ChartAuthenticatedEntity>>> showChartRequestsWithHttpInfo(@Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Charts Displays all charts for caller.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
winkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseEntity<List<ChartAuthenticatedEntity>>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showChartRequestsWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec showChartRequestsWithResponseSpec(@Nullable String winkVersion, @Nullable String accept) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Charts Displays all charts for caller.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
winkVersion- The winkVersion parameteraccept- The accept parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateChartRequest
public reactor.core.publisher.Mono<ChartAuthenticatedEntity> updateChartRequest(@Nonnull String chartIdentifier, @Nonnull UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Chart Updates an existing chart request by identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierupsertChartRequestAuthenticatedEntity- The upsertChartRequestAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ChartAuthenticatedEntity
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateChartRequestWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ChartAuthenticatedEntity>> updateChartRequestWithHttpInfo(@Nonnull String chartIdentifier, @Nonnull UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Chart Updates an existing chart request by identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierupsertChartRequestAuthenticatedEntity- The upsertChartRequestAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<ChartAuthenticatedEntity>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateChartRequestWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec updateChartRequestWithResponseSpec(@Nonnull String chartIdentifier, @Nonnull UpsertChartRequestAuthenticatedEntity upsertChartRequestAuthenticatedEntity, @Nullable String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Chart Updates an existing chart request by identifier.500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
400 - Bad Request
200 - OK
- Parameters:
chartIdentifier- Chart identifierupsertChartRequestAuthenticatedEntity- The upsertChartRequestAuthenticatedEntity parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-