Skip to content

Commit feb491a

Browse files
committed
Update docs metadata
1 parent aaa184b commit feb491a

File tree

2 files changed

+30
-18
lines changed

2 files changed

+30
-18
lines changed

api/overview/azure/latest/microsoft.azure.webjobs.extensions.webpubsub-readme.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
22
title: Azure WebJobs Web PubSub client library for .NET
33
keywords: Azure, dotnet, SDK, API, Microsoft.Azure.WebJobs.Extensions.WebPubSub, webpubsub
4-
ms.date: 09/04/2024
4+
ms.date: 07/29/2025
55
ms.topic: reference
66
ms.devlang: dotnet
77
ms.service: webpubsub
88
---
9-
# Azure WebJobs Web PubSub client library for .NET - version 1.8.0
9+
# Azure WebJobs Web PubSub client library for .NET - version 1.9.0
1010

1111

1212
This extension provides functionality for receiving Web PubSub webhook calls in Azure Functions, allowing you to easily write functions that respond to any event published to Web PubSub.
1313

14-
[Source code](https://github.com/Azure/azure-sdk-for-net/blob/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.8.0/sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/src) |
14+
[Source code](https://github.com/Azure/azure-sdk-for-net/blob/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.9.0/sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/src) |
1515
[Package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.WebPubSub) |
16-
[API reference documentation](/dotnet/api/microsoft.azure.webjobs.extensions.webpubsub) |
16+
[API reference documentation](https://learn.microsoft.com/dotnet/api/microsoft.azure.webjobs.extensions.webpubsub) |
1717
[Product documentation](https://aka.ms/awps/doc) |
18-
[Samples](https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.8.0/sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/samples)
18+
[Samples](https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.9.0/sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/samples)
1919

2020
## Getting started
2121

@@ -29,15 +29,15 @@ dotnet add package Microsoft.Azure.WebJobs.Extensions.WebPubSub
2929

3030
### Prerequisites
3131

32-
You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/) and an Azure resource group with a Web PubSub resource. Follow this [step-by-step tutorial](/azure/azure-web-pubsub/howto-develop-create-instance) to create an Azure Web PubSub instance.
32+
You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/) and an Azure resource group with a Web PubSub resource. Follow this [step-by-step tutorial](https://learn.microsoft.com/azure/azure-web-pubsub/howto-develop-create-instance) to create an Azure Web PubSub instance.
3333

3434
### Authenticate the client
3535

36-
In order to let the extension work with Azure Web PubSub service, you will need to provide a valid `ConnectionString`.
36+
In order to let the extension work with Azure Web PubSub service, you will need to provide a valid `ConnectionString`.
3737

3838
You can find the **Keys** for you Azure Web PubSub service in the [Azure Portal](https://portal.azure.com/).
3939

40-
The `AzureWebJobsStorage` connection string is used to preserve the processing checkpoint information as required refer to [Storage considerations](/azure/azure-functions/storage-considerations#storage-account-requirements)
40+
The `AzureWebJobsStorage` connection string is used to preserve the processing checkpoint information as required refer to [Storage considerations](https://learn.microsoft.com/azure/azure-functions/storage-considerations#storage-account-requirements)
4141

4242
For the local development use the `local.settings.json` file to store the connection string, `<connection-string>` can be set to `WebPubSubConnectionString` as default supported in the extension, or you can set customized names by mapping it with `Connection = <connection-string>` in function binding attributes:
4343

@@ -49,7 +49,7 @@ For the local development use the `local.settings.json` file to store the connec
4949
}
5050
}
5151
```
52-
When deployed use the [application settings](/azure/azure-functions/functions-how-to-use-azure-function-app-settings) to set the connection string.
52+
When deployed use the [application settings](https://learn.microsoft.com/azure/azure-functions/functions-how-to-use-azure-function-app-settings) to set the connection string.
5353

5454
## Key concepts
5555

@@ -156,11 +156,11 @@ public static WebPubSubEventResponse Run(
156156

157157
## Troubleshooting
158158

159-
Please refer to [Monitor Azure Functions](/azure/azure-functions/functions-monitoring) for troubleshooting guidance.
159+
Please refer to [Monitor Azure Functions](https://learn.microsoft.com/azure/azure-functions/functions-monitoring) for troubleshooting guidance.
160160

161161
## Next steps
162162

163-
Read the [introduction to Azure Function](/azure/azure-functions/functions-overview) or [creating an Azure Function guide](/azure/azure-functions/functions-create-first-azure-function).
163+
Read the [introduction to Azure Function](https://learn.microsoft.com/azure/azure-functions/functions-overview) or [creating an Azure Function guide](https://learn.microsoft.com/azure/azure-functions/functions-create-first-azure-function).
164164

165165
## Contributing
166166

@@ -177,15 +177,13 @@ For more information see the [Code of Conduct FAQ][coc_faq]
177177
or contact [[email protected]][coc_contact] with any
178178
additional questions or comments.
179179

180-
181-
182180
<!-- LINKS -->
183-
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.8.0/sdk/search/Microsoft.Azure.WebJobs.Extensions.WebPubSub/src
181+
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.9.0/sdk/search/Microsoft.Azure.WebJobs.Extensions.WebPubSub/src
184182
[package]: https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.WebPubSub/
185-
[docs]: /dotnet/api/Microsoft.Azure.WebJobs.Extensions.WebPubSub
183+
[docs]: https://learn.microsoft.com/dotnet/api/Microsoft.Azure.WebJobs.Extensions.WebPubSub
186184
[nuget]: https://www.nuget.org/
187185

188-
[contrib]: https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.8.0/CONTRIBUTING.md
186+
[contrib]: https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.WebJobs.Extensions.WebPubSub_1.9.0/CONTRIBUTING.md
189187
[cla]: https://cla.microsoft.com
190188
[coc]: https://opensource.microsoft.com/codeofconduct/
191189
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/

metadata/latest/Microsoft.Azure.WebJobs.Extensions.WebPubSub.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "Microsoft.Azure.WebJobs.Extensions.WebPubSub",
3-
"Version": "1.8.0",
3+
"Version": "1.9.0",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub",
66
"ServiceDirectory": "webpubsub",
@@ -10,8 +10,22 @@
1010
"SdkType": "functions",
1111
"IsNewSdk": true,
1212
"ArtifactName": "Microsoft.Azure.WebJobs.Extensions.WebPubSub",
13-
"ReleaseStatus": "2024-09-04",
13+
"ReleaseStatus": "2025-07-29",
14+
"IncludedForValidation": false,
1415
"AdditionalValidationPackages": null,
16+
"ArtifactDetails": {
17+
"name": "Microsoft.Azure.WebJobs.Extensions.WebPubSub",
18+
"safeName": "MicrosoftAzureWebJobsExtensionsWebPubSub",
19+
"triggeringPaths": [
20+
"/sdk/webpubsub/ci.yml"
21+
]
22+
},
23+
"CIParameters": {
24+
"CIMatrixConfigs": [],
25+
"BuildSnippets": false,
26+
"AOTTestInputs": [],
27+
"CheckAOTCompat": false
28+
},
1529
"Namespaces": [
1630
"Microsoft.Azure.WebJobs.Extensions.WebPubSub",
1731
"Microsoft.Extensions.Hosting"

0 commit comments

Comments
 (0)