diff --git a/administrative/README.md b/administrative/README.md index 1dcd402de..6694aeccc 100644 --- a/administrative/README.md +++ b/administrative/README.md @@ -2,7 +2,7 @@ Administrative API -- API version: 7.0.21 +- API version: 7.0.22 Manage users, accounts, and account groups in the ThousandEyes platform using the Administrative API. This API provides the following operations to manage your organization: diff --git a/administrative/docs/AccountGroupsApi.md b/administrative/docs/AccountGroupsApi.md index 70946784f..1cbb0e3c1 100644 --- a/administrative/docs/AccountGroupsApi.md +++ b/administrative/docs/AccountGroupsApi.md @@ -493,7 +493,7 @@ ApiResponse<[**AccountGroupDetail**](AccountGroupDetail.md)> ## getAccountGroups -> AccountGroups getAccountGroups(aid) +> AccountGroups getAccountGroups() List account groups @@ -520,9 +520,8 @@ public class Example { BearerAuth.setBearerToken("BEARER TOKEN"); AccountGroupsApi apiInstance = new AccountGroupsApi(defaultClient); - String aid = "1234"; // String | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. try { - AccountGroups result = apiInstance.getAccountGroups(aid); + AccountGroups result = apiInstance.getAccountGroups(); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AccountGroupsApi#getAccountGroups"); @@ -537,10 +536,7 @@ public class Example { ### Parameters - -| Name | Type | Description | Notes | -|------------- | ------------- | ------------- | -------------| -| **aid** | **String**| A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. | [optional] | +This endpoint does not need any parameter. ### Return type @@ -569,7 +565,7 @@ public class Example { ## getAccountGroupsWithHttpInfo -> ApiResponse getAccountGroups getAccountGroupsWithHttpInfo(aid) +> ApiResponse getAccountGroups getAccountGroupsWithHttpInfo() List account groups @@ -597,9 +593,8 @@ public class Example { BearerAuth.setBearerToken("BEARER TOKEN"); AccountGroupsApi apiInstance = new AccountGroupsApi(defaultClient); - String aid = "1234"; // String | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. try { - ApiResponse response = apiInstance.getAccountGroupsWithHttpInfo(aid); + ApiResponse response = apiInstance.getAccountGroupsWithHttpInfo(); System.out.println("Status code: " + response.getStatusCode()); System.out.println("Response headers: " + response.getHeaders()); System.out.println("Response body: " + response.getData()); @@ -616,10 +611,7 @@ public class Example { ### Parameters - -| Name | Type | Description | Notes | -|------------- | ------------- | ------------- | -------------| -| **aid** | **String**| A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. | [optional] | +This endpoint does not need any parameter. ### Return type diff --git a/administrative/src/main/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApi.java b/administrative/src/main/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApi.java index 87530617d..0556dbdcb 100644 --- a/administrative/src/main/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApi.java +++ b/administrative/src/main/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApi.java @@ -223,26 +223,24 @@ private ApiRequest.ApiRequestBuilder getAccountGroupRequestBuilder(String id, Li /** * List account groups * Retrieves a list of account groups available to the current user. - * @param aid A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. (optional) * @return AccountGroups * @throws ApiException if fails to make API call */ - public AccountGroups getAccountGroups(String aid) throws ApiException { - ApiResponse response = getAccountGroupsWithHttpInfo(aid); + public AccountGroups getAccountGroups() throws ApiException { + ApiResponse response = getAccountGroupsWithHttpInfo(); return response.getData(); } /** * List account groups * Retrieves a list of account groups available to the current user. - * @param aid A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. (optional) * @return ApiResponse<AccountGroups> * @throws ApiException if fails to make API call */ - public ApiResponse getAccountGroupsWithHttpInfo(String aid) throws ApiException { + public ApiResponse getAccountGroupsWithHttpInfo() throws ApiException { getAccountGroupsValidateRequest(); - var requestBuilder = getAccountGroupsRequestBuilder(aid); + var requestBuilder = getAccountGroupsRequestBuilder(); return apiClient.send(requestBuilder.build(), AccountGroups.class); } @@ -250,19 +248,13 @@ public ApiResponse getAccountGroupsWithHttpInfo(String aid) throw private void getAccountGroupsValidateRequest() throws ApiException { } - private ApiRequest.ApiRequestBuilder getAccountGroupsRequestBuilder(String aid) throws ApiException { + private ApiRequest.ApiRequestBuilder getAccountGroupsRequestBuilder() throws ApiException { ApiRequest.ApiRequestBuilder requestBuilder = ApiRequest.builder() .method("GET"); String path = "/account-groups"; requestBuilder.path(path); - List> localVarQueryParams = new ArrayList<>(); - localVarQueryParams.addAll(parameterToPairs("aid", aid)); - - if (!localVarQueryParams.isEmpty()) { - requestBuilder.queryParams(localVarQueryParams); - } requestBuilder.header("Accept", List.of("application/hal+json, application/json, application/problem+json")); requestBuilder.header("User-Agent", List.of(Config.USER_AGENT)); diff --git a/administrative/src/test/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApiTest.java b/administrative/src/test/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApiTest.java index a08506e98..9f8b2e3b0 100644 --- a/administrative/src/test/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApiTest.java +++ b/administrative/src/test/java/com/thousandeyes/sdk/account/management/administrative/AccountGroupsApiTest.java @@ -500,7 +500,7 @@ public void getAccountGroupsRequestAndResponseDeserializationTest() .withBody(responseBodyJson) .withStatus(statusCode))); - var apiResponse = api.getAccountGroups(null); + var apiResponse = api.getAccountGroups(); assertEquals(mappedResponse, apiResponse); } diff --git a/agents/README.md b/agents/README.md index d464452ec..a61bae4bb 100644 --- a/agents/README.md +++ b/agents/README.md @@ -2,7 +2,7 @@ Agents API -- API version: 7.0.21 +- API version: 7.0.22 ## Overview diff --git a/alerts/README.md b/alerts/README.md index cded7bc38..66915b73f 100644 --- a/alerts/README.md +++ b/alerts/README.md @@ -2,7 +2,7 @@ Alerts API -- API version: 7.0.21 +- API version: 7.0.22 You can manage the following alert functionalities on the ThousandEyes platform using the Alerts API: diff --git a/bgp-monitors/README.md b/bgp-monitors/README.md index 742504c89..a4b2dc10f 100644 --- a/bgp-monitors/README.md +++ b/bgp-monitors/README.md @@ -2,7 +2,7 @@ BGP Monitors API -- API version: 7.0.21 +- API version: 7.0.22 Retrieve information about BGP monitors available to your ThousandEyes account. ThousandEyes ingests BGP routing data from dozens of global BGP collectors and automatically integrates that visibility as a configurable layer under service, network, and path visualization layers. diff --git a/credentials/README.md b/credentials/README.md index d1e874742..c6df1b527 100644 --- a/credentials/README.md +++ b/credentials/README.md @@ -2,7 +2,7 @@ Credentials API -- API version: 7.0.21 +- API version: 7.0.22 Manage credentials for transaction tests using the Credentials API. diff --git a/dashboards/README.md b/dashboards/README.md index e881f650b..8152b224b 100644 --- a/dashboards/README.md +++ b/dashboards/README.md @@ -2,7 +2,7 @@ Dashboards API -- API version: 7.0.21 +- API version: 7.0.22 Manage ThousandEyes Dashboards. diff --git a/emulation/README.md b/emulation/README.md index 73f4f6890..825775646 100644 --- a/emulation/README.md +++ b/emulation/README.md @@ -2,7 +2,7 @@ Emulation API -- API version: 7.0.21 +- API version: 7.0.22 The Emulation API facilitates the retrieval of user-agent strings for HTTP, pageload, and transaction tests. It also enables the retrieval and addition of emulated devices for pageload and transaction tests. diff --git a/endpoint-agents/README.md b/endpoint-agents/README.md index ea8f916bc..40a221c76 100644 --- a/endpoint-agents/README.md +++ b/endpoint-agents/README.md @@ -2,7 +2,7 @@ Endpoint Agents API -- API version: 7.0.21 +- API version: 7.0.22 Manage ThousandEyes Endpoint Agents using this API. diff --git a/endpoint-instant-tests/README.md b/endpoint-instant-tests/README.md index 808c42d40..32efd5518 100644 --- a/endpoint-instant-tests/README.md +++ b/endpoint-instant-tests/README.md @@ -2,7 +2,7 @@ Endpoint Instant Scheduled Tests API -- API version: 7.0.21 +- API version: 7.0.22 You can create and execute a new endpoint instant scheduled test within ThousandEyes using this API. The test parameters are specified in the `POST` data. diff --git a/endpoint-labels/README.md b/endpoint-labels/README.md index 3e40a1539..560e8651e 100644 --- a/endpoint-labels/README.md +++ b/endpoint-labels/README.md @@ -2,7 +2,7 @@ Endpoint Agent Labels API -- API version: 7.0.21 +- API version: 7.0.22 Manage labels applied to endpoint agents using this API. diff --git a/endpoint-test-results/README.md b/endpoint-test-results/README.md index e9490d547..a528129dd 100644 --- a/endpoint-test-results/README.md +++ b/endpoint-test-results/README.md @@ -2,7 +2,7 @@ Endpoint Test Results API -- API version: 7.0.21 +- API version: 7.0.22 Retrieve results for scheduled and dynamic tests on endpoint agents. diff --git a/endpoint-test-results/src/test/java/com/thousandeyes/sdk/endpoint/tests/results/RealUserEndpointTestResultsApiTest.java b/endpoint-test-results/src/test/java/com/thousandeyes/sdk/endpoint/tests/results/RealUserEndpointTestResultsApiTest.java index e845aafd6..4307906c1 100644 --- a/endpoint-test-results/src/test/java/com/thousandeyes/sdk/endpoint/tests/results/RealUserEndpointTestResultsApiTest.java +++ b/endpoint-test-results/src/test/java/com/thousandeyes/sdk/endpoint/tests/results/RealUserEndpointTestResultsApiTest.java @@ -520,11 +520,11 @@ public void getRealUserTestPageResultsRequestAndResponseDeserializationTest() "log" : { "browser" : { "name" : "Google Chrome", - "version" : "7.0.21.98" + "version" : "7.0.22.98" }, "creator" : { "name" : "ThousandEyes Endpoint Agent", - "version" : "7.0.21" + "version" : "7.0.22" }, "entries" : [ { "pageref" : "page_1", diff --git a/endpoint-tests/README.md b/endpoint-tests/README.md index df1cf75ca..911b52b9e 100644 --- a/endpoint-tests/README.md +++ b/endpoint-tests/README.md @@ -2,7 +2,7 @@ Endpoint Tests API -- API version: 7.0.21 +- API version: 7.0.22 Manage endpoint agent dynamic and scheduled tests using the Endpoint Tests API. diff --git a/event-detection/README.md b/event-detection/README.md index 09b8d7568..49e5b968e 100644 --- a/event-detection/README.md +++ b/event-detection/README.md @@ -2,7 +2,7 @@ Event Detection API -- API version: 7.0.21 +- API version: 7.0.22 Event detection occurs when ThousandEyes identifies that error signals related to a component (proxy, network node, AS, server etc) have deviated from the baselines established by events. diff --git a/instant-tests/README.md b/instant-tests/README.md index 80b3d1524..9bec5a013 100644 --- a/instant-tests/README.md +++ b/instant-tests/README.md @@ -2,7 +2,7 @@ Instant Tests API -- API version: 7.0.21 +- API version: 7.0.22 The Instant Tests API operations lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` diff --git a/internet-insights/README.md b/internet-insights/README.md index e5d853a7d..6460951c9 100644 --- a/internet-insights/README.md +++ b/internet-insights/README.md @@ -2,7 +2,7 @@ Internet Insights API -- API version: 7.0.21 +- API version: 7.0.22 We are happy to announce the release of the Internet Insights API set. This limited release includes endpoints that: diff --git a/snapshots/README.md b/snapshots/README.md index 0050300ef..1b88deac6 100644 --- a/snapshots/README.md +++ b/snapshots/README.md @@ -2,7 +2,7 @@ Test Snapshots API -- API version: 7.0.21 +- API version: 7.0.22 Creates a new test snapshot in ThousandEyes. diff --git a/streaming/README.md b/streaming/README.md index c6d9ea124..3e0b06e5d 100644 --- a/streaming/README.md +++ b/streaming/README.md @@ -2,7 +2,7 @@ ThousandEyes for OpenTelemetry API -- API version: 7.0.21 +- API version: 7.0.22 ThousandEyes for OpenTelemetry provides machine-to-machine integration between ThousandEyes and its customers. It allows you to export ThousandEyes telemetry data in OTel format, which is widely used in the industry. With ThousandEyes for OTel, you can leverage frameworks widely used in the observability domain - such as Splunk, Grafana, and Honeycomb - to capture and analyze ThousandEyes data. Any client that supports OTel can use ThousandEyes for OpenTelemetry. diff --git a/tags/README.md b/tags/README.md index 8ba775ba4..9fb2c63ce 100644 --- a/tags/README.md +++ b/tags/README.md @@ -2,7 +2,7 @@ Tags API -- API version: 7.0.21 +- API version: 7.0.22 The ThousandEyes Tags API provides a tagging system with key/value pairs. It allows you to tag assets within the ThousandEyes platform (such as agents, tests, or alert rules) with meaningful metadata. For example: `branch:sfo`, `branch:nyc`, and `team:netops`. diff --git a/test-results/README.md b/test-results/README.md index faba9d217..8c844fb43 100644 --- a/test-results/README.md +++ b/test-results/README.md @@ -2,7 +2,7 @@ Test Results API -- API version: 7.0.21 +- API version: 7.0.22 Get test result metrics for Cloud and Enterprise Agent tests. diff --git a/tests/README.md b/tests/README.md index dd299d7a0..fe790b4d0 100644 --- a/tests/README.md +++ b/tests/README.md @@ -2,7 +2,7 @@ Tests API -- API version: 7.0.21 +- API version: 7.0.22 This API supports listing, creating, editing, and deleting Cloud and Enterprise Agent (CEA) based tests. diff --git a/usage/README.md b/usage/README.md index 39c780d9d..f7fa267a8 100644 --- a/usage/README.md +++ b/usage/README.md @@ -2,7 +2,7 @@ Usage API -- API version: 7.0.21 +- API version: 7.0.22 These usage endpoints define the following operations: