Skip to content

Commit 07aad48

Browse files
authored
Merge pull request #289639 from MicrosoftDocs/main
11/1 11:00 AM IST Publish
2 parents 76d0092 + 458b12a commit 07aad48

22 files changed

+298
-162
lines changed

articles/bastion/bastion-faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ Yes. See [About VM connections and features](vm-about.md#audio).
171171

172172
Azure Bastion offers support for file transfer between your target VM and local computer using Bastion and a native RDP or SSH client. At this time, you can’t upload or download files using PowerShell or via the Azure portal. For more information, see [Upload and download files using the native client](vm-upload-download-native.md).
173173

174-
### <a name="aadj"></a>Does Bastion hardening work with AADJ VM extension-joined VMs?
174+
### <a name="aadj"></a>Does Bastion work with Entra ID extension-joined VMs?
175175

176-
This feature doesn't work with AADJ VM extension-joined machines using Microsoft Entra users. For more information, see [Sign in to a Windows virtual machine in Azure by using Microsoft Entra ID](../active-directory/devices/howto-vm-sign-in-azure-ad-windows.md#requirements).
176+
Bastion does work with Entra ID extension-joined VMs for Microsoft Entra users with RDP and SSH on the native client, and SSH only on the portal. Entra ID for RDP on the portal is not yet supported. For more information, see [Sign in to a Windows virtual machine in Azure by using Microsoft Entra ID](../active-directory/devices/howto-vm-sign-in-azure-ad-windows.md#requirements).
177177

178178
### <a name="rdscal-compatibility"></a>Is Bastion compatible with VMs set up as RDS session hosts?
179179

articles/container-apps/log-streaming.md

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ You can stream the system or console logs for your container app. To stream the
6262

6363
#### View container app system log stream
6464

65-
This example uses the `--tail` argument to display the last 50 system log messages from the container app. Replace the \<placeholders\> with your container app's values.
65+
This example uses the `--tail` argument to display the last 50 system log messages from the container app. Replace the `<PLACEHOLDERS>` with your container app's values.
6666

6767
# [Bash](#tab/bash)
6868

6969
```azurecli
7070
az containerapp logs show \
71-
--name <ContainerAppName> \
72-
--resource-group <ResourceGroup> \
71+
--name <CONTAINER_APP_NAME> \
72+
--resource-group <RESOURCE_GROUP> \
7373
--type system \
7474
--tail 50
7575
```
@@ -78,22 +78,22 @@ az containerapp logs show \
7878

7979
```azurecli
8080
az containerapp logs show `
81-
--name <ContainerAppName> `
82-
--resource-group <ResourceGroup> `
81+
--name <CONTAINER_APP_NAME> `
82+
--resource-group <RESOURCE_GROUP> `
8383
--type system `
8484
--tail 50
8585
```
8686

8787
---
8888

89-
This example displays a continuous live stream of system log messages from the container app using the `--follow` argument. Replace the \<placeholders\> with your container app's values.
89+
This example displays a continuous live stream of system log messages from the container app using the `--follow` argument. Replace the `<PLACEHOLDERS>` with your container app's values.
9090

9191
# [Bash](#tab/bash)
9292

9393
```azurecli
9494
az containerapp logs show \
95-
--name <ContainerAppName> \
96-
--resource-group <ResourceGroup> \
95+
--name <CONTAINER_APP_NAME> \
96+
--resource-group <RESOURCE_GROUP> \
9797
--type system \
9898
--follow
9999
```
@@ -102,8 +102,8 @@ az containerapp logs show \
102102

103103
```azurecli
104104
az containerapp logs show `
105-
--name <ContainerAppName> `
106-
--resource-group <ResourceGroup> `
105+
--name <CONTAINER_APP_NAME> `
106+
--resource-group <RESOURCE_GROUP> `
107107
--type system `
108108
--follow
109109
```
@@ -122,63 +122,63 @@ To connect to a container's console log stream in a container app with multiple
122122
| `--replica` | The replica name in the revision. |
123123
| `--container` | The container name to connect to. |
124124

125-
You can get the revision names with the `az containerapp revision list` command. Replace the \<placeholders\> with your container app's values.
125+
You can get the revision names with the `az containerapp revision list` command. Replace the `<PLACEHOLDERS>` with your container app's values.
126126

127127
# [Bash](#tab/bash)
128128

129129
```azurecli
130130
az containerapp revision list \
131-
--name <ContainerAppName> \
132-
--resource-group <ResourceGroup> \
131+
--name <CONTAINER_APP_NAME> \
132+
--resource-group <RESOURCE_GROUP> \
133133
--query "[].name"
134134
```
135135

136136
# [PowerShell](#tab/powershell)
137137

138138
```azurecli
139139
az containerapp revision list `
140-
--name <ContainerAppName> `
141-
--resource-group <ResourceGroup> `
140+
--name <CONTAINER_APP_NAME> `
141+
--resource-group <RESOURCE_GROUP> `
142142
--query "[].name"
143143
```
144144

145145
---
146146

147-
Use the `az containerapp replica list` command to get the replica and container names. Replace the \<placeholders\> with your container app's values.
147+
Use the `az containerapp replica list` command to get the replica and container names. Replace the `<PLACEHOLDERS>` with your container app's values.
148148

149149
# [Bash](#tab/bash)
150150

151151
```azurecli
152152
az containerapp replica list \
153-
--name <ContainerAppName> \
154-
--resource-group <ResourceGroup> \
155-
--revision <RevisionName> \
153+
--name <CONTAINER_APP_NAME> \
154+
--resource-group <RESOURCE_GROUP> \
155+
--revision <REVISION_NAME> \
156156
--query "[].{Containers:properties.containers[].name, Name:name}"
157157
```
158158

159159
# [PowerShell](#tab/powershell)
160160

161161
```azurecli
162162
az containerapp replica list `
163-
--name <ContainerAppName> `
164-
--resource-group <ResourceGroup> `
165-
--revision <RevisionName> `
163+
--name <CONTAINER_APP_NAME> `
164+
--resource-group <RESOURCE_GROUP> `
165+
--revision <REVISION_NAME> `
166166
--query "[].{Containers:properties.containers[].name, Name:name}"
167167
```
168168

169169
---
170170

171-
Live stream the container console using the `az container app show` command with the `--follow` argument. Replace the \<placeholders\> with your container app's values.
171+
Live stream the container console using the `az container app show` command with the `--follow` argument. Replace the `<PLACEHOLDERS>` with your container app's values.
172172

173173
# [Bash](#tab/bash)
174174

175175
```azurecli
176176
az containerapp logs show \
177-
--name <ContainerAppName> \
178-
--resource-group <ResourceGroup> \
179-
--revision <RevisionName> \
180-
--replica <ReplicaName> \
181-
--container <ContainerName> \
177+
--name <CONTAINER_APP_NAME> \
178+
--resource-group <RESOURCE_GROUP> \
179+
--revision <REVISION_NAME> \
180+
--replica <REPLICA_NAME> \
181+
--container <CONTAINER_NAME> \
182182
--type console \
183183
--follow
184184
```
@@ -187,11 +187,11 @@ az containerapp logs show \
187187

188188
```azurecli
189189
az containerapp logs show `
190-
--name <ContainerAppName> `
191-
--resource-group <ResourceGroup> `
192-
--revision <RevisionName> `
193-
--replica <ReplicaName> `
194-
--container <ContainerName> `
190+
--name <CONTAINER_APP_NAME> `
191+
--resource-group <RESOURCE_GROUP> `
192+
--revision <REVISION_NAME> `
193+
--replica <REPLICA_NAME> `
194+
--container <CONTAINER_NAME> `
195195
--type console `
196196
--follow
197197
```
@@ -200,17 +200,17 @@ az containerapp logs show `
200200

201201
Use `Ctrl-C` or `Cmd-C` to stop the live stream.
202202

203-
View the last 50 console log messages using the `az containerapp logs show` command with the `--tail` argument. Replace the \<placeholders\> with your container app's values.
203+
View the last 50 console log messages using the `az containerapp logs show` command with the `--tail` argument. Replace the `<PLACEHOLDERS>` with your container app's values.
204204

205205
# [Bash](#tab/bash)
206206

207207
```azurecli
208208
az containerapp logs show \
209-
--name <ContainerAppName> \
210-
--resource-group <ResourceGroup> \
211-
--revision <RevisionName> \
212-
--replica <ReplicaName> \
213-
--container <ContainerName> \
209+
--name <CONTAINER_APP_NAME> \
210+
--resource-group <RESOURCE_GROUP> \
211+
--revision <REVISION_NAME> \
212+
--replica <REPLICA_NAME> \
213+
--container <CONTAINER_NAME> \
214214
--type console \
215215
--tail 50
216216
```
@@ -219,11 +219,11 @@ az containerapp logs show \
219219

220220
```azurecli
221221
az containerapp logs show `
222-
--name <ContainerAppName> `
223-
--resource-group <ResourceGroup> `
224-
--revision <RevisionName> `
225-
--replica <ReplicaName> `
226-
--container <ContainerName> `
222+
--name <CONTAINER_APP_NAME> `
223+
--resource-group <RESOURCE_GROUP> `
224+
--revision <REVISION_NAME> `
225+
--replica <REPLICA_NAME> `
226+
--container <CONTAINER_NAME> `
227227
--type console `
228228
--tail 50
229229
```
@@ -232,47 +232,47 @@ az containerapp logs show `
232232

233233
### View environment system log stream
234234

235-
Use the following command with the `--follow` argument to view the live system log stream from the Container Apps environment. Replace the \<placeholders\> with your environment values.
235+
Use the following command with the `--follow` argument to view the live system log stream from the Container Apps environment. Replace the `<PLACEHOLDERS>` with your environment values.
236236

237237
# [Bash](#tab/bash)
238238

239239
```azurecli
240240
az containerapp env logs show \
241-
--name <ContainerAppEnvironmentName> \
242-
--resource-group <ResourceGroup> \
241+
--name <ENVIRONMENT_NAME> \
242+
--resource-group <RESOURCE_GROUP> \
243243
--follow
244244
```
245245

246246
# [PowerShell](#tab/powershell)
247247

248248
```azurecli
249249
az containerapp env logs show `
250-
--name <ContainerAppEnvironmentName> `
251-
--resource-group <ResourceGroup> `
250+
--name <ENVIRONMENT_NAME> `
251+
--resource-group <RESOURCE_GROUP> `
252252
--follow
253253
```
254254

255255
---
256256

257257
Use `Ctrl-C` or `Cmd-C` to stop the live stream.
258258

259-
This example uses the `--tail` argument to display the last 50 environment system log messages. Replace the \<placeholders\> with your environment values.
259+
This example uses the `--tail` argument to display the last 50 environment system log messages. Replace the `<PLACEHOLDERS>` with your environment values.
260260

261261
# [Bash](#tab/bash)
262262

263263
```azurecli
264264
az containerapp env logs show \
265-
--name <ContainerAppName> \
266-
--resource-group <ResourceGroup> \
265+
--name <CONTAINER_APP_NAME> \
266+
--resource-group <RESOURCE_GROUP> \
267267
--tail 50
268268
```
269269

270270
# [PowerShell](#tab/powershell)
271271

272272
```azurecli
273273
az containerapp env logs show `
274-
--name <ContainerAppName> `
275-
--resource-group <ResourceGroup> `
274+
--name <CONTAINER_APP_NAME> `
275+
--resource-group <RESOURCE_GROUP> `
276276
--tail 50
277277
```
278278

articles/data-factory/tutorial-managed-virtual-network-on-premise-sql-server.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,9 @@ data factory from the resources list.
258258
> [!NOTE]
259259
> When deploying your SQL Server on a virtual machine within a virtual network, it is essential to enhance your FQDN by appending **privatelink**. Otherwise, it will be conflicted with other records in the DNS setting. For example, you can simply modify the SQL Server's FQDN from **sqlserver.westus.cloudapp.azure.net** to **sqlserver.privatelink.westus.cloudapp.azure.net**.
260260
261+
> [!NOTE]
262+
> Currently ApplicationIntent and MultiSubnetFailover are not supported in SQL connection properties.
263+
261264
8. Create private endpoint.
262265
263266
## Create a linked service and test the connection

articles/healthcare-apis/known-issues.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Refer to the table for details about resolution dates or possible workarounds.
2020

2121
|Issue | Date discovered | Workaround | Date resolved |
2222
| :------------------------------------- | :------------ | :------------- | :------------- |
23+
|Customers can't access FHIR, DICOM, or Medtech through the portal. | October 31, 2024 1:00 pm PST | ARM calls are still operational, and there's no disruption to existing services. | -- |
2324
|For FHIR instances created after August 19,2024, diagnostic logs aren't available in log analytics workspace. |September 19,2024 9:00 am PST| -- | October 17,2024 9:00 am PST |
2425
|For FHIR instances created after August 19,2024, in metrics blade - Total requests, Total latency, and Total errors metrics are not being populated. |September 19,2024 9:00 am PST| -- | October 28,2024 9:00 am PST |
2526
|For FHIR instances created after August 19,2024, changes in private link configuration at the workspace level causes FHIR service to be stuck in 'Updating' state. |September 24,2024 9:00 am PST| Accounts deployed prior to September 27,2024 and facing this issue can follow the steps: <br> 1. Remove private endpoint from the Azure Health Data Services workspace having this issue. On Azure blade, go to Workspace and then click on Networking blade. In networking blade, select existing private link connection and click on 'Remove' <br> 2. Create new private connection to link to the workspace.| September 27,2024 9:00 am PST |

articles/iot-operations/troubleshoot/iot-operations-faq.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
ms.author: patricka
77
ms.topic: faq
88
ms.custom: references_regions
9-
ms.date: 09/10/2024
9+
ms.date: 10/30/2024
1010

1111
title: Azure IoT Operations frequently asked questions
1212
summary: |
@@ -27,6 +27,9 @@ sections:
2727
- question: |
2828
Does Azure IoT Operations offer high availability across multi-node setups?
2929
answer: Yes, Azure IoT Operations workloads on K3s and HCI/AKS-Arc multi-node clusters support distribution of Azure IoT Operations workloads across multi-nodes setups in the preview version.
30+
- question: |
31+
Does Azure Device Registry Preview offer high availability across availability zones and regions?
32+
answer: For information on high availability across availability zones and regions for ADR, see [Reliability in Azure Device Registry](../../reliability/reliability-device-registry.md).
3033
- question: |
3134
Can I migrate my IoT Edge workloads to Azure IoT Operations?
3235
answer: Currently, there's no documented migration path from IoT Edge to Azure IoT Operations. If you have any feature asks for Azure IoT Operations as part of your migration plans, share your requests on the [Azure IoT Operations public feedback forum](https://feedback.azure.com/d365community/forum/20152d6e-6a76-ee11-8179-000d3a1abe9e).

articles/operator-nexus/.openpublishing.redirection.operator-nexus.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,23 @@
4848
{
4949
"source_path": "troubleshoot-enable-node-down-cleaner.md",
5050
"redirect_url": "concepts-storage",
51-
5251
"redirect_document_id": false
5352
},
5453
{
5554
"source_path": "troubleshoot-bmm-node-reboot.md",
5655
"redirect_url": "troubleshoot-vm-error-after-reboot",
5756
"redirect_document_id": false
57+
},
58+
{
59+
"source_path": "reference-operator-nexus-fabric-skus.md",
60+
"redirect_url": "reference-operator-nexus-skus",
61+
"redirect_document_id": false
62+
},
63+
{
64+
"source_path": "reference-operator-nexus-network-cloud-skus-us.md",
65+
"redirect_url": "reference-operator-nexus-skus",
66+
"redirect_document_id": false
5867
}
68+
5969
]
6070
}

articles/operator-nexus/TOC.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,10 +367,8 @@
367367
href: reference-acl-configuration.md
368368
- name: Access Control List configuration examples
369369
href: reference-acl-examples.md
370-
- name: Operator Nexus Network Fabric SKUs
371-
href: reference-operator-nexus-fabric-skus.md
372-
- name: Operator Nexus Network Cloud SKUs
373-
href: reference-operator-nexus-network-cloud-skus-us.md
370+
- name: Operator Nexus SKUs
371+
href: reference-operator-nexus-skus.md
374372
- name: Release Notes
375373
items:
376374
- name: 2024

articles/operator-nexus/concepts-compute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ Azure Operator Nexus offers a group of on-premises cloud solutions that cater to
116116

117117
### Operator Nexus Network Cloud SKUs
118118

119-
For Stock Keeping Unit (SKU) information please see [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-network-cloud-skus-us.md).
119+
For Stock Keeping Unit (SKU) information please see [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-skus.md).

articles/operator-nexus/howto-configure-cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ az networkcloud cluster create --name "$CLUSTER_NAME" --location "$LOCATION" \
7474
| LAW_ID | Log Analytics Workspace ID for the Cluster |
7575
| CLUSTER_LOCATION | The local name of the Cluster |
7676
| AGGR_RACK_RESOURCE_ID | RackID for Aggregator Rack |
77-
| AGGR_RACK_SKU | Rack SKU for Aggregator Rack *See [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-network-cloud-skus-us.md) |
77+
| AGGR_RACK_SKU | Rack SKU for Aggregator Rack *See [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-skus.md) |
7878
| AGGR_RACK_SN | Rack Serial Number for Aggregator Rack |
7979
| AGGR_RACK_LOCATION | Rack physical location for Aggregator Rack |
8080
| AGGR_RACK_BMM | Used for single rack deployment only, empty for multi-rack |
@@ -83,7 +83,7 @@ az networkcloud cluster create --name "$CLUSTER_NAME" --location "$LOCATION" \
8383
| SA_USER | Storage Appliance admin user |
8484
| SA_SN | Storage Appliance Serial Number |
8585
| COMPX_RACK_RESOURCE_ID | RackID for CompX Rack; repeat for each rack in compute-rack-definitions |
86-
| COMPX_RACK_SKU | Rack SKU for CompX Rack; repeat for each rack in compute-rack-definitions *See [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-network-cloud-skus-us.md) |
86+
| COMPX_RACK_SKU | Rack SKU for CompX Rack; repeat for each rack in compute-rack-definitions *See [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-skus.md) |
8787
| COMPX_RACK_SN | Rack Serial Number for CompX Rack; repeat for each rack in compute-rack-definitions |
8888
| COMPX_RACK_LOCATION | Rack physical location for CompX Rack; repeat for each rack in compute-rack-definitions |
8989
| COMPX_SVRY_BMC_PASS | CompX Rack ServerY Baseboard Management Controller (BMC) password; repeat for each rack in compute-rack-definitions and for each server in rack |

0 commit comments

Comments
 (0)