Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion administrative/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Administrative API

- API version: 7.0.73
- API version: 7.0.75

Manage users, accounts, and account groups in the ThousandEyes platform using the Administrative API.
This API provides the following operations to manage your organization:
Expand Down
2 changes: 1 addition & 1 deletion agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Agents API

- API version: 7.0.73
- API version: 7.0.75


## Overview
Expand Down
6 changes: 3 additions & 3 deletions alerts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Alerts API

- API version: 7.0.73
- API version: 7.0.75

You can manage the following alert functionalities on the ThousandEyes platform using the Alerts API:

Expand Down Expand Up @@ -160,8 +160,8 @@ Class | Method | HTTP request | Description
*AlertSuppressionWindowsApi* | [**updateAlertSuppressionWindowWithHttpInfo**](docs/AlertSuppressionWindowsApi.md#updateAlertSuppressionWindowWithHttpInfo) | **PUT** /alert-suppression-windows/{windowId} | Update alert suppression window
*AlertsApi* | [**getAlert**](docs/AlertsApi.md#getAlert) | **GET** /alerts/{alertId} | Retrieve alert details
*AlertsApi* | [**getAlertWithHttpInfo**](docs/AlertsApi.md#getAlertWithHttpInfo) | **GET** /alerts/{alertId} | Retrieve alert details
*AlertsApi* | [**getAlerts**](docs/AlertsApi.md#getAlerts) | **GET** /alerts | List active alerts
*AlertsApi* | [**getAlertsWithHttpInfo**](docs/AlertsApi.md#getAlertsWithHttpInfo) | **GET** /alerts | List active alerts
*AlertsApi* | [**getAlerts**](docs/AlertsApi.md#getAlerts) | **GET** /alerts | List alerts
*AlertsApi* | [**getAlertsWithHttpInfo**](docs/AlertsApi.md#getAlertsWithHttpInfo) | **GET** /alerts | List alerts


<a id="documentation-for-authorization"></a>
Expand Down
12 changes: 6 additions & 6 deletions alerts/docs/AlertsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ All URIs are relative to *https://api.thousandeyes.com/v7*
|------------- | ------------- | -------------|
| [**getAlert**](AlertsApi.md#getAlert) | **GET** /alerts/{alertId} | Retrieve alert details |
| [**getAlertWithHttpInfo**](AlertsApi.md#getAlertWithHttpInfo) | **GET** /alerts/{alertId} | Retrieve alert details |
| [**getAlerts**](AlertsApi.md#getAlerts) | **GET** /alerts | List active alerts |
| [**getAlertsWithHttpInfo**](AlertsApi.md#getAlertsWithHttpInfo) | **GET** /alerts | List active alerts |
| [**getAlerts**](AlertsApi.md#getAlerts) | **GET** /alerts | List alerts |
| [**getAlertsWithHttpInfo**](AlertsApi.md#getAlertsWithHttpInfo) | **GET** /alerts | List alerts |



Expand Down Expand Up @@ -173,9 +173,9 @@ ApiResponse<[**AlertDetail**](AlertDetail.md)>

> Alerts getAlerts(aid, window, startDate, endDate, max, cursor, state)

List active alerts
List alerts

Returns a list of active alerts. If no alerts are active within the specified time range, an empty response is returned. Note that time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, or &#x60;endDate&#x60;) are only applied to cleared alerts.
Returns a list of alerts. Only active (triggered) alerts are returned by default. To retrieve cleared alerts, specify &#x60;clear&#x60; in the optional &#x60;state&#x60; parameter. Note that the &#x60;state&#x60; parameter only accepts a single value, so to get both active and cleared alerts within a time range, two separate requests are needed. Time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, &#x60;endDate&#x60;) are applied differently depending on state: - For &#x60;state&#x3D;trigger&#x60;: filters by when the alert started. - For &#x60;state&#x3D;clear&#x60;: filters by when the alert cleared. - When state is not specified: returns cleared alerts within the time range plus any currently active alerts that started before the end of the range.

### Example

Expand Down Expand Up @@ -260,9 +260,9 @@ public class Example {

> ApiResponse<Alerts> getAlerts getAlertsWithHttpInfo(aid, window, startDate, endDate, max, cursor, state)

List active alerts
List alerts

Returns a list of active alerts. If no alerts are active within the specified time range, an empty response is returned. Note that time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, or &#x60;endDate&#x60;) are only applied to cleared alerts.
Returns a list of alerts. Only active (triggered) alerts are returned by default. To retrieve cleared alerts, specify &#x60;clear&#x60; in the optional &#x60;state&#x60; parameter. Note that the &#x60;state&#x60; parameter only accepts a single value, so to get both active and cleared alerts within a time range, two separate requests are needed. Time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, &#x60;endDate&#x60;) are applied differently depending on state: - For &#x60;state&#x3D;trigger&#x60;: filters by when the alert started. - For &#x60;state&#x3D;clear&#x60;: filters by when the alert cleared. - When state is not specified: returns cleared alerts within the time range plus any currently active alerts that started before the end of the range.

### Example

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ private ApiRequest.ApiRequestBuilder getAlertRequestBuilder(UUID alertId, String
return requestBuilder;
}
/**
* List active alerts with pagination
* Returns a list of active alerts. If no alerts are active within the specified time range, an empty response is returned. Note that time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, or &#x60;endDate&#x60;) are only applied to cleared alerts.
* List alerts with pagination
* Returns a list of alerts. Only active (triggered) alerts are returned by default. To retrieve cleared alerts, specify &#x60;clear&#x60; in the optional &#x60;state&#x60; parameter. Note that the &#x60;state&#x60; parameter only accepts a single value, so to get both active and cleared alerts within a time range, two separate requests are needed. Time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, &#x60;endDate&#x60;) are applied differently depending on state: - For &#x60;state&#x3D;trigger&#x60;: filters by when the alert started. - For &#x60;state&#x3D;clear&#x60;: filters by when the alert cleared. - When state is not specified: returns cleared alerts within the time range plus any currently active alerts that started before the end of the range.
* @param aid A unique identifier associated with your account group. You can retrieve your &#x60;AccountGroupId&#x60; from the &#x60;/account-groups&#x60; 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)
* @param window A dynamic time interval up to the current time of the request. Specify the interval as a number followed by an optional type: &#x60;s&#x60; for seconds (default if no type is specified), &#x60;m&#x60; for minutes, &#x60;h&#x60; for hours, &#x60;d&#x60; for days, and &#x60;w&#x60; for weeks. For a precise date range, use &#x60;startDate&#x60; and &#x60;endDate&#x60;. (optional)
* @param startDate Use with the &#x60;endDate&#x60; parameter. Include the complete time (hours, minutes, and seconds) in UTC time zone, following the ISO 8601 date-time format. See the example for reference. Please note that this parameter can&#39;t be used with &#x60;window&#x60;. (optional)
Expand All @@ -136,8 +136,8 @@ public Paginator<Alert, Alerts> getAlertsPaginated(String aid, String window, Of

}
/**
* List active alerts
* Returns a list of active alerts. If no alerts are active within the specified time range, an empty response is returned. Note that time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, or &#x60;endDate&#x60;) are only applied to cleared alerts.
* List alerts
* Returns a list of alerts. Only active (triggered) alerts are returned by default. To retrieve cleared alerts, specify &#x60;clear&#x60; in the optional &#x60;state&#x60; parameter. Note that the &#x60;state&#x60; parameter only accepts a single value, so to get both active and cleared alerts within a time range, two separate requests are needed. Time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, &#x60;endDate&#x60;) are applied differently depending on state: - For &#x60;state&#x3D;trigger&#x60;: filters by when the alert started. - For &#x60;state&#x3D;clear&#x60;: filters by when the alert cleared. - When state is not specified: returns cleared alerts within the time range plus any currently active alerts that started before the end of the range.
* @param aid A unique identifier associated with your account group. You can retrieve your &#x60;AccountGroupId&#x60; from the &#x60;/account-groups&#x60; 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)
* @param window A dynamic time interval up to the current time of the request. Specify the interval as a number followed by an optional type: &#x60;s&#x60; for seconds (default if no type is specified), &#x60;m&#x60; for minutes, &#x60;h&#x60; for hours, &#x60;d&#x60; for days, and &#x60;w&#x60; for weeks. For a precise date range, use &#x60;startDate&#x60; and &#x60;endDate&#x60;. (optional)
* @param startDate Use with the &#x60;endDate&#x60; parameter. Include the complete time (hours, minutes, and seconds) in UTC time zone, following the ISO 8601 date-time format. See the example for reference. Please note that this parameter can&#39;t be used with &#x60;window&#x60;. (optional)
Expand All @@ -154,8 +154,8 @@ public Alerts getAlerts(String aid, String window, OffsetDateTime startDate, Off
}

/**
* List active alerts
* Returns a list of active alerts. If no alerts are active within the specified time range, an empty response is returned. Note that time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, or &#x60;endDate&#x60;) are only applied to cleared alerts.
* List alerts
* Returns a list of alerts. Only active (triggered) alerts are returned by default. To retrieve cleared alerts, specify &#x60;clear&#x60; in the optional &#x60;state&#x60; parameter. Note that the &#x60;state&#x60; parameter only accepts a single value, so to get both active and cleared alerts within a time range, two separate requests are needed. Time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, &#x60;endDate&#x60;) are applied differently depending on state: - For &#x60;state&#x3D;trigger&#x60;: filters by when the alert started. - For &#x60;state&#x3D;clear&#x60;: filters by when the alert cleared. - When state is not specified: returns cleared alerts within the time range plus any currently active alerts that started before the end of the range.
* @param aid A unique identifier associated with your account group. You can retrieve your &#x60;AccountGroupId&#x60; from the &#x60;/account-groups&#x60; 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)
* @param window A dynamic time interval up to the current time of the request. Specify the interval as a number followed by an optional type: &#x60;s&#x60; for seconds (default if no type is specified), &#x60;m&#x60; for minutes, &#x60;h&#x60; for hours, &#x60;d&#x60; for days, and &#x60;w&#x60; for weeks. For a precise date range, use &#x60;startDate&#x60; and &#x60;endDate&#x60;. (optional)
* @param startDate Use with the &#x60;endDate&#x60; parameter. Include the complete time (hours, minutes, and seconds) in UTC time zone, following the ISO 8601 date-time format. See the example for reference. Please note that this parameter can&#39;t be used with &#x60;window&#x60;. (optional)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ public void getAlertRequestAndResponseDeserializationTest()
}

/**
* List active alerts
* List alerts
* <p>
* Returns a list of active alerts. If no alerts are active within the specified time range, an empty response is returned. Note that time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, or &#x60;endDate&#x60;) are only applied to cleared alerts.
* Returns a list of alerts. Only active (triggered) alerts are returned by default. To retrieve cleared alerts, specify &#x60;clear&#x60; in the optional &#x60;state&#x60; parameter. Note that the &#x60;state&#x60; parameter only accepts a single value, so to get both active and cleared alerts within a time range, two separate requests are needed. Time filters (&#x60;window&#x60;, &#x60;startDate&#x60;, &#x60;endDate&#x60;) are applied differently depending on state: - For &#x60;state&#x3D;trigger&#x60;: filters by when the alert started. - For &#x60;state&#x3D;clear&#x60;: filters by when the alert cleared. - When state is not specified: returns cleared alerts within the time range plus any currently active alerts that started before the end of the range.
*
* @throws JsonProcessingException if the deserialization fails
*/
Expand Down
2 changes: 1 addition & 1 deletion bgp-monitors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

BGP Monitors API

- API version: 7.0.73
- API version: 7.0.75


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.
Expand Down
23 changes: 23 additions & 0 deletions connectors/.openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
36 changes: 36 additions & 0 deletions connectors/.openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.openapi-generator-ignore
README.md
api/openapi.yaml
build.gradle
docs/GenericConnectorsApi.md
docs/OperationConnectorsApi.md
docs/WebhookOperationsApi.md
src/main/java/com/thousandeyes/sdk/connectors/GenericConnectorsApi.java
src/main/java/com/thousandeyes/sdk/connectors/OperationConnectorsApi.java
src/main/java/com/thousandeyes/sdk/connectors/WebhookOperationsApi.java
src/main/java/com/thousandeyes/sdk/connectors/model/Assignments.java
src/main/java/com/thousandeyes/sdk/connectors/model/AuthenticationType.java
src/main/java/com/thousandeyes/sdk/connectors/model/BasicAuthentication.java
src/main/java/com/thousandeyes/sdk/connectors/model/BearerTokenAuthentication.java
src/main/java/com/thousandeyes/sdk/connectors/model/ConnectorType.java
src/main/java/com/thousandeyes/sdk/connectors/model/Error.java
src/main/java/com/thousandeyes/sdk/connectors/model/GenericConnector.java
src/main/java/com/thousandeyes/sdk/connectors/model/GenericConnectorAuth.java
src/main/java/com/thousandeyes/sdk/connectors/model/GenericConnectors.java
src/main/java/com/thousandeyes/sdk/connectors/model/Header.java
src/main/java/com/thousandeyes/sdk/connectors/model/Link.java
src/main/java/com/thousandeyes/sdk/connectors/model/OauthClientCredentialsAuthentication.java
src/main/java/com/thousandeyes/sdk/connectors/model/OauthCodeAuthentication.java
src/main/java/com/thousandeyes/sdk/connectors/model/OperationCategory.java
src/main/java/com/thousandeyes/sdk/connectors/model/OperationStatus.java
src/main/java/com/thousandeyes/sdk/connectors/model/OperationType.java
src/main/java/com/thousandeyes/sdk/connectors/model/OtherTokenAuthentication.java
src/main/java/com/thousandeyes/sdk/connectors/model/SelfLinks.java
src/main/java/com/thousandeyes/sdk/connectors/model/UnauthorizedError.java
src/main/java/com/thousandeyes/sdk/connectors/model/ValidationError.java
src/main/java/com/thousandeyes/sdk/connectors/model/ValidationErrorItem.java
src/main/java/com/thousandeyes/sdk/connectors/model/WebhookOperation.java
src/main/java/com/thousandeyes/sdk/connectors/model/WebhookOperations.java
src/test/java/com/thousandeyes/sdk/connectors/GenericConnectorsApiTest.java
src/test/java/com/thousandeyes/sdk/connectors/OperationConnectorsApiTest.java
src/test/java/com/thousandeyes/sdk/connectors/WebhookOperationsApiTest.java
1 change: 1 addition & 0 deletions connectors/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7.6.0
Loading
Loading