You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/app/availability-overview.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ You can set up availability tests for any HTTP or HTTPS endpoint that's accessib
15
15
## Types of tests
16
16
17
17
> [!IMPORTANT]
18
+
> There are two upcoming availability tests retirements. On August 31, 2024 multi-step web tests in Application Insights will be retired. We advise users of these tests to transition to alternative availability tests before the retirement date. Following this date, we will be taking down the underlying infrastructure which will break remaining multi-step tests.
18
19
> On September 30, 2026, URL ping tests in Application Insights will be retired. Existing URL ping tests will be removed from your resources. Review the [pricing](https://azure.microsoft.com/pricing/details/monitor/#pricing) for standard tests and [transition](https://aka.ms/availabilitytestmigration) to using them before September 30, 2026 to ensure you can continue to run single-step availability tests in your Application Insights resources.
Copy file name to clipboardExpand all lines: articles/azure-web-pubsub/quickstart-serverless.md
+158Lines changed: 158 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,16 @@ In this tutorial, you learn how to:
63
63
64
64
- The [Azure CLI](/cli/azure) to manage Azure resources.
65
65
66
+
# [Python](#tab/python)
67
+
68
+
- A code editor, such as [Visual Studio Code](https://code.visualstudio.com/).
69
+
70
+
-[Python](https://www.python.org/downloads/) (v3.7+). See [supported Python versions](../azure-functions/functions-reference-python.md#python-version).
71
+
72
+
-[Azure Functions Core Tools](https://github.com/Azure/azure-functions-core-tools#installing) (v4 or higher preferred) to run Azure Function apps locally and deploy to Azure.
73
+
74
+
- The [Azure CLI](/cli/azure) to manage Azure resources.
az functionapp create --resource-group WebPubSubFunction --consumption-plan-location <REGION> --runtime python --runtime-version 3.9 --functions-version 4 --name <FUNCIONAPP_NAME> --os-type linux --storage-account <STORAGE_NAME>
780
+
```
781
+
624
782
1. Deploy the function project to Azure:
625
783
626
784
After you have successfully created your function app in Azure, you're now ready to deploy your local functions project by using the [func azure functionapp publish](./../azure-functions/functions-run-local.md) command.
Copy file name to clipboardExpand all lines: articles/expressroute/how-to-configure-coexisting-gateway-portal.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@ The steps to configure both scenarios are covered in this article. You can confi
33
33
34
34
***Only route-based VPN gateway is supported.** You must use a route-based [VPN gateway](../vpn-gateway/vpn-gateway-about-vpngateways.md). You also can use a route-based VPN gateway with a VPN connection configured for 'policy-based traffic selectors' as described in [Connect to multiple policy-based VPN devices](../vpn-gateway/vpn-gateway-connect-multiple-policybased-rm-ps.md).
35
35
***ExpressRoute-VPN Gateway coexist configurations are not supported on the Basic SKU**.
36
+
***Both the ExpressRoute and VPN gateways must be able to communicate with each other via BGP to function properly.** If using a UDR on the gateway subnet, ensure that it does not include a route for the gateway subnet rage itself as this will interfere with BGP traffic.
36
37
***If you want to use transit routing between ExpressRoute and VPN, the ASN of Azure VPN Gateway must be set to 65515.** Azure VPN Gateway supports the BGP routing protocol. For ExpressRoute and Azure VPN to work together, you must keep the Autonomous System Number of your Azure VPN gateway at its default value, 65515. If you previously selected an ASN other than 65515 and you change the setting to 65515, you must reset the VPN gateway for the setting to take effect.
37
38
***The gateway subnet must be /27 or a shorter prefix**, such as /26, /25, or you receive an error message when you add the ExpressRoute virtual network gateway.
38
39
***Coexistence for IPv4 traffic only.** ExpressRoute co-existence with VPN gateway is supported, but only for IPv4 traffic. IPv6 traffic isn't supported for VPN gateways.
@@ -131,4 +132,4 @@ You can add a Point-to-Site configuration to your coexisting set by following th
131
132
If you want to enable connectivity between one of your local networks that is connected to ExpressRoute and another of your local network that is connected to a site-to-site VPN connection, you need to set up [Azure Route Server](../route-server/expressroute-vpn-support.md).
132
133
133
134
## Next steps
134
-
For more information about ExpressRoute, see the [ExpressRoute FAQ](expressroute-faqs.md).
135
+
For more information about ExpressRoute, see the [ExpressRoute FAQ](expressroute-faqs.md).
Copy file name to clipboardExpand all lines: articles/healthcare-apis/dicom/dicom-services-conformance-statement-v2.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,12 +58,14 @@ The [Studies Service](https://dicom.nema.org/medical/dicom/current/output/html/p
58
58
59
59
### Store (STOW-RS)
60
60
61
-
This transaction uses the POST method to store representations of studies, series, and instances contained in the request payload.
61
+
This transaction uses the POST or PUT method to store representations of studies, series, and instances contained in the request payload.
62
62
63
63
| Method | Path | Description |
64
64
| :----- | :----------------- | :---------- |
65
65
| POST | ../studies | Store instances. |
66
66
| POST | ../studies/{study} | Store instances for a specific study. |
67
+
| PUT | ../studies | Upsert instances. |
68
+
| PUT | ../studies/{study} | Upsert instances for a specific study. |
67
69
68
70
Parameter `study` corresponds to the DICOM attribute StudyInstanceUID. If specified, any instance that doesn't belong to the provided study is rejected with a `43265` warning code.
69
71
@@ -77,7 +79,7 @@ The following `Content-Type` header(s) are supported:
77
79
*`application/dicom`
78
80
79
81
> [!NOTE]
80
-
> The Server **will not**coerce or replace attributes that conflict with existing data. All data will be stored as provided.
82
+
> The server won't coerce or replace attributes that conflict with existing data for POST requests. All data is stored as provided. For upsert (PUT) requests, the existing data is replaced by the new data received.
81
83
82
84
#### Store required attributes
83
85
The following DICOM elements are required to be present in every DICOM file attempting to be stored:
Copy file name to clipboardExpand all lines: articles/healthcare-apis/dicom/dicom-services-conformance-statement.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,12 +58,14 @@ The [Studies Service](https://dicom.nema.org/medical/dicom/current/output/html/p
58
58
59
59
### Store (STOW-RS)
60
60
61
-
This transaction uses the POST method to store representations of studies, series, and instances contained in the request payload.
61
+
This transaction uses the POST or PUT method to store representations of studies, series, and instances contained in the request payload.
62
62
63
63
| Method | Path | Description |
64
64
| :----- | :----------------- | :---------- |
65
65
| POST | ../studies | Store instances. |
66
66
| POST | ../studies/{study} | Store instances for a specific study. |
67
+
| PUT | ../studies | Upsert instances. |
68
+
| PUT | ../studies/{study} | Upsert instances for a specific study. |
67
69
68
70
Parameter `study` corresponds to the DICOM attribute StudyInstanceUID. If specified, any instance that doesn't belong to the provided study is rejected with a `43265` warning code.
69
71
@@ -77,7 +79,7 @@ The following `Content-Type` header(s) are supported:
77
79
*`application/dicom`
78
80
79
81
> [!NOTE]
80
-
> The Server **will not**coerce or replace attributes that conflict with existing data. All data will be stored as provided.
82
+
> The server won't coerce or replace attributes that conflict with existing data for POST requests. All data is stored as provided. For upsert (PUT) requests, the existing data is replaced by the new data received.
81
83
82
84
#### Store required attributes
83
85
The following DICOM elements are required to be present in every DICOM file attempting to be stored:
0 commit comments