Skip to content

Commit bc28b08

Browse files
bullet list tweak and versions
1 parent d085a2e commit bc28b08

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

articles/time-series-insights/time-series-insights-query-data-csharp.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,17 @@ The sample code below demonstrates the following features:
2525

2626
* How to pass that acquired access token in the `Authorization` header of subsequent Query API requests.
2727

28-
* The sample calls each of the GA Query APIs demonstrating:
29-
* How HTTP requests are made to the [Get Environments API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environments-api) to return the environments the user has access to.
30-
* How HTTP requests are made to the [Get Environment Availability API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-availability-api).
31-
* How HTTP requests are made to the [Get Environment Metadata API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-metadata-api) to retrieve environment metadata.
32-
* How HTTP requests are made to the [Get Environments Events API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-events-api) and WSS messages are sent to the [Get Environment Events Streamed API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-events-streamed-api)
33-
* How HTTP requests are made to the [Get Environment Aggregates API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-aggregates-api) and WSS messages are sent to the [Get Environment Aggregates Streamed API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-aggregates-streamed-api)
28+
* The sample calls each of the GA Query APIs demonstrating how HTTP requests are made to the:
29+
* [Get Environments API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environments-api) to return the environments the user has access to
30+
* [Get Environment Availability API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-availability-api)
31+
* [Get Environment Metadata API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-metadata-api) to retrieve environment metadata
32+
* [Get Environments Events API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-events-api)
33+
* [Get Environment Aggregates API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-aggregates-api)
34+
35+
* How to interact with the GA Query APIs using WSS to message the:
36+
37+
* [Get Environment Events Streamed API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-events-streamed-api)
38+
* [Get Environment Aggregates Streamed API](https://docs.microsoft.com/rest/api/time-series-insights/ga-query-api#get-environment-aggregates-streamed-api)
3439

3540
> [!NOTE]
3641
> The example code is available at [https://github.com/Azure-Samples/Azure-Time-Series-Insights](https://github.com/Azure-Samples/Azure-Time-Series-Insights/tree/master/csharp-tsi-ga-sample).
@@ -60,13 +65,13 @@ It's recommended that you use the newest version of Visual Studio:
6065

6166
The sample code has two required dependencies:
6267

63-
* [Microsoft.IdentityModel.Clients.ActiveDirectory](https://www.nuget.org/packages/Microsoft.IdentityModel.Clients.ActiveDirectory/) - 5.2.6 package.
64-
* [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json) - 12.0.3 package.
68+
* [Microsoft.IdentityModel.Clients.ActiveDirectory](https://www.nuget.org/packages/Microsoft.IdentityModel.Clients.ActiveDirectory/) - 3.13.9 package.
69+
* [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json) - 9.0.1 package.
6570

6671
Add the packages using [NuGet 2.12+](https://www.nuget.org/):
6772

68-
* `dotnet add package Newtonsoft.Json --version 12.0.3`
69-
* `dotnet add package Microsoft.IdentityModel.Clients.ActiveDirectory --version 5.2.6`
73+
* `dotnet add package Newtonsoft.Json --version 9.0.1`
74+
* `dotnet add package Microsoft.IdentityModel.Clients.ActiveDirectory --version 3.13.9`
7075

7176
## C# sample code
7277

0 commit comments

Comments
 (0)