Skip to content

Commit c777b39

Browse files
authored
Update Maps TimeZone configs and readme (Azure#47466)
* Update configs and readme * Update timezone changelog
1 parent 0b7d9a1 commit c777b39

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

sdk/maps/Azure.Maps.TimeZones/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.0-beta.1 (Unreleased)
3+
## 1.0.0-beta.1 (2024-12-10)
44

55
### Features Added
66

sdk/maps/Azure.Maps.TimeZones/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ MapsTimeZoneClient client = new MapsTimeZoneClient(credential, clientId);
5858

5959
Shared access signature (SAS) tokens are authentication tokens created using the JSON Web token (JWT) format and are cryptographically signed to prove authentication for an application to the Azure Maps REST API.
6060

61-
Before integrating SAS token authentication, we need to install `Azure.ResourceManager` and `Azure.ResourceManager.Maps` (version `1.1.0-beta.2` or higher):
61+
Before integrating SAS token authentication, we need to install `Azure.ResourceManager` and `Azure.ResourceManager.Maps` (version `1.1.0` or higher):
6262

6363
```powershell
6464
dotnet add package Azure.ResourceManager

sdk/maps/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Below are the packages contained in Azure Maps:
1111
- [Azure.Maps.Routing][route] allows you to get the routing information for multiple origins and destinations.
1212
- [Azure.Maps.Search][search] supports many searching functionalities for entities, point of interests (POI) or streets, and also supports reverse geocode a coordinate to a place or an entity.
1313
- [Azure.Maps.Geolocation][geolocation] allows you to get the ISO country code for the provided IP address.
14-
- [Azure.Maps.TimeZone][timezone]
14+
- [Azure.Maps.TimeZones][timezone] allows you to get time zone information for the world.
1515
- [Azure.Maps.Weather][weather] allows you to get real-time, forecasted, and historical weather data.
1616
### Install the package
1717

@@ -22,7 +22,7 @@ dotnet add package Azure.Maps.Rendering --prerelease
2222
dotnet add package Azure.Maps.Routing --prerelease
2323
dotnet add package Azure.Maps.Search --prerelease
2424
dotnet add package Azure.Maps.Geolocation --prerelease
25-
dotnet add package Azure.Maps.TimeZone --prerelease
25+
dotnet add package Azure.Maps.TimeZones --prerelease
2626
```
2727

2828
Azure.Maps.Common will be automatically installed when you install other packages.
@@ -39,7 +39,7 @@ az maps account create --kind "Gen2" --account-name "myMapAccountName" --resourc
3939

4040
### Authenticate the client
4141

42-
There are 2 ways to authenticate the client: Shared key authentication and Azure AD. Please refer to each package's README for details.
42+
There are 3 ways to authenticate the client: Shared key authentication, Microsoft Entra and Shared Access Signature (SAS) Authentication. Please refer to each package's README for details.
4343

4444
## Key concepts
4545

@@ -75,7 +75,7 @@ using Azure.Maps.Routing;
7575
using Azure.Maps.Search;
7676
```
7777

78-
In the main function, instantiate `MapsSearchClient`, `MapsRoutingClient` and `MapsRenderingClient` either via AAD or subscription key authentication. Below is an example of instantiation via AAD:
78+
In the main function, instantiate `MapsSearchClient`, `MapsRoutingClient` and `MapsRenderingClient` either via subscription key, Microsoft Entra, or SAS token authentication. Below is an example of instantiation via Microsoft Entra:
7979

8080
```C#
8181
// Create a MapsSearchClient and MapsRoutingClient that will authenticate through Active Directory
@@ -221,7 +221,7 @@ additional questions or comments.
221221
[route]: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/maps/Azure.Maps.Routing
222222
[geolocation]: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/maps/Azure.Maps.Geolocation
223223
[search]: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/maps/Azure.Maps.Search
224-
[timezone]: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/maps/Azure.Maps.TimeZone
224+
[timezone]: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/maps/Azure.Maps.TimeZones
225225
[weather]: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/maps/Azure.Maps.Weather
226226
[cla]: https://cla.microsoft.com
227227
[coc]: https://opensource.microsoft.com/codeofconduct/

sdk/maps/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ extends:
4444
safeName: AzureMapsSearch
4545
- name: Azure.Maps.Geolocation
4646
safeName: AzureMapsGeolocation
47+
- name: Azure.Maps.TimeZones
48+
safeName: AzureMapsTimeZones

0 commit comments

Comments
 (0)