Skip to content

Commit f24bd75

Browse files
committed
Update docs metadata
1 parent cc88033 commit f24bd75

File tree

2 files changed

+28
-17
lines changed

2 files changed

+28
-17
lines changed

api/overview/azure/preview/maps.search-readme.md

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: Azure Maps Search client library for .NET
33
keywords: Azure, dotnet, SDK, API, Azure.Maps.Search, maps
4-
ms.date: 09/30/2024
4+
ms.date: 04/16/2025
55
ms.topic: reference
66
ms.devlang: dotnet
77
ms.service: maps
88
---
9-
# Azure Maps Search client library for .NET - version 2.0.0-beta.4
9+
# Azure Maps Search client library for .NET - version 2.0.0-beta.5
1010

1111

1212
Azure Maps Search is a library that can query for locations, points of interests or search within a geometric area.
1313

14-
[Source code](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.4/sdk/maps/Azure.Maps.Search/src) | [API reference documentation](/rest/api/maps/) | [REST API reference documentation](/rest/api/maps/search) | [Product documentation](/azure/azure-maps/)
14+
[Source code](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.5/sdk/maps/Azure.Maps.Search/src) | [API reference documentation](https://learn.microsoft.com/rest/api/maps/) | [REST API reference documentation](https://learn.microsoft.com/rest/api/maps/search) | [Product documentation](https://learn.microsoft.com/azure/azure-maps/)
1515

1616
## Getting started
1717

@@ -25,7 +25,7 @@ dotnet add package Azure.Maps.Search --prerelease
2525

2626
### Prerequisites
2727

28-
> You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/) and [Azure Maps account](/azure/azure-maps/quick-demo-map-app#create-an-azure-maps-account).
28+
> You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/) and [Azure Maps account](https://learn.microsoft.com/azure/azure-maps/quick-demo-map-app#create-an-azure-maps-account).
2929
3030
To create a new Azure Maps account, you can use the Azure Portal, Azure PowerShell, or the Azure CLI. Here's an example using the Azure CLI:
3131

@@ -129,26 +129,26 @@ MapsSearchClient client = new MapsSearchClient(sasCredential);
129129
* Communicate with Azure Maps endpoint to request the geometry data such as a city or country outline for a set of entities
130130
* Communicate with Azure Maps endpoint to perform a free form search inside a single geometry or many of them
131131

132-
Learn more by viewing our [samples](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.4/sdk/maps/Azure.Maps.Search/tests/Samples)
132+
Learn more by viewing our [samples](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.5/sdk/maps/Azure.Maps.Search/tests/Samples)
133133

134134
### Thread safety
135135

136136
We guarantee that all client instance methods are thread-safe and independent of each other ([guideline](https://azure.github.io/azure-sdk/dotnet_introduction.html#dotnet-service-methods-thread-safety)). This ensures that the recommendation of reusing client instances is always safe, even across threads.
137137

138138
### Additional concepts
139139
<!-- CLIENT COMMON BAR -->
140-
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.4/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
141-
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.4/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
142-
[Long-running operations](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.4/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt) |
143-
[Handling failures](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.4/sdk/core/Azure.Core/README.md#reporting-errors-requestfailedexception) |
144-
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.4/sdk/core/Azure.Core/samples/Diagnostics.md) |
140+
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.5/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
141+
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.5/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
142+
[Long-running operations](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.5/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt) |
143+
[Handling failures](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.5/sdk/core/Azure.Core/README.md#reporting-errors-requestfailedexception) |
144+
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.5/sdk/core/Azure.Core/samples/Diagnostics.md) |
145145
[Mocking](https://learn.microsoft.com/dotnet/azure/sdk/unit-testing-mocking) |
146146
[Client lifetime](https://devblogs.microsoft.com/azure-sdk/lifetime-management-and-thread-safety-guarantees-of-azure-sdk-net-clients/)
147147
<!-- CLIENT COMMON BAR -->
148148

149149
## Examples
150150

151-
You can familiarize yourself with different APIs using our [samples](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.4/sdk/maps/Azure.Maps.Search/tests/Samples).
151+
You can familiarize yourself with different APIs using our [samples](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.5/sdk/maps/Azure.Maps.Search/tests/Samples).
152152

153153
### Example Get Geocoding
154154

@@ -259,17 +259,15 @@ For example, if you try to search with invalid coordinates, a error is returned,
259259

260260
## Next steps
261261

262-
* [More samples](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.4/sdk/maps/Azure.Maps.Search/samples)
262+
* [More samples](https://github.com/Azure/azure-sdk-for-net/tree/Azure.Maps.Search_2.0.0-beta.5/sdk/maps/Azure.Maps.Search/samples)
263263

264264
## Contributing
265265

266-
See the [CONTRIBUTING.md](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.4/CONTRIBUTING.md) for details on building, testing, and contributing to this library.
266+
See the [CONTRIBUTING.md](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Maps.Search_2.0.0-beta.5/CONTRIBUTING.md) for details on building, testing, and contributing to this library.
267267

268268
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit <cla.microsoft.com>.
269269

270270
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
271271

272272
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact <[email protected]> with any additional questions or comments.
273273

274-
275-

metadata/preview/Azure.Maps.Search.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "Azure.Maps.Search",
3-
"Version": "2.0.0-beta.4",
3+
"Version": "2.0.0-beta.5",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/maps/Azure.Maps.Search",
66
"ServiceDirectory": "maps",
@@ -10,9 +10,22 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "Azure.Maps.Search",
13-
"ReleaseStatus": "2024-09-30",
13+
"ReleaseStatus": "2025-04-16",
1414
"IncludedForValidation": false,
1515
"AdditionalValidationPackages": null,
16+
"ArtifactDetails": {
17+
"safeName": "AzureMapsSearch",
18+
"triggeringPaths": [
19+
"/sdk/maps/ci.yml"
20+
],
21+
"name": "Azure.Maps.Search"
22+
},
23+
"CIParameters": {
24+
"CheckAOTCompat": false,
25+
"BuildSnippets": true,
26+
"CIMatrixConfigs": [],
27+
"AOTTestInputs": []
28+
},
1629
"Namespaces": [
1730
"Azure.Maps.Search",
1831
"Azure.Maps.Search.Models"

0 commit comments

Comments
 (0)