Skip to content

Commit 1a98254

Browse files
author
gitName
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into aigwb
2 parents 7f50b19 + 021047e commit 1a98254

File tree

9 files changed

+37
-18
lines changed

9 files changed

+37
-18
lines changed

articles/azure-resource-manager/management/tag-resources-bicep.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Tag resources, resource groups, and subscriptions with Bicep
33
description: Shows how to use Bicep to apply tags to Azure resources.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 09/26/2024
6+
ms.date: 05/14/2025
77
---
88

99
# Apply tags with Bicep
@@ -136,6 +136,24 @@ resource applyTags 'Microsoft.Resources/tags@2021-04-01' = {
136136
}
137137
```
138138

139+
## Read Tags
140+
141+
You can read existing tags with the following approaches.
142+
143+
> [!WARNING]
144+
> The `tags` property on the `Microsoft.Resources/tags` resource is not set if there are no tags set.
145+
> To avoid errors, ensure you use the safe-dereference operator (`.?`) on `properties`.
146+
147+
```Bicep
148+
resource readTags 'Microsoft.Resources/tags@2021-04-01' existing = {
149+
name: 'default'
150+
}
151+
var tagValue = readTags.properties?.tags?.myTag
152+
153+
// Equivalent to above:
154+
var tagValue2 = reference(subscriptionResourceId('Microsoft.Resources/tags', 'default'), '2021-04-01', 'Full').properties.?tags.?myTag2
155+
```
156+
139157
## Next steps
140158

141159
* For a list of resource types that support tags, see [Tag support for Azure resources](tag-support.md).

articles/load-balancer/cross-subscription-how-to-internal-load-balancer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: load-balancer
55
author: mbender-ms
66
ms.service: azure-load-balancer
77
ms.topic: how-to
8-
ms.date: 10/17/2024
8+
ms.date: 05/12/2025
99
ms.author: mbender
1010
ms.custom: devx-track-azurepowershell
1111
#CustomerIntent: As a < type of user >, I want < what? > so that < why? > .
@@ -38,7 +38,7 @@ With Azure PowerShell, you'll:
3838
```azurepowershell
3939
# Create a load balancer
4040
41-
$tags = @{
41+
$tag = @{
4242
'IsRemoteFrontend'= 'true'
4343
}
4444
@@ -47,7 +47,7 @@ $loadbalancer = @{
4747
Name = 'myLoadBalancer'
4848
Location = 'westus'
4949
Sku = 'Standard'
50-
Tags = $tags
50+
Tag = $tag
5151
}
5252
5353
$LB = New-AzLoadBalancer @loadbalancer

articles/partner-solutions/arize-ai/create.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: "Quickstart: Create an Azure Native Arize AI Cloud Service resource (preview)"
3-
description: Learn how to create a resource for Arize AI (preview) using the Azure portal.
2+
title: "Quickstart: Create an Azure Native Arize AI Cloud Service resource"
3+
description: Learn how to create a resource for Arize AI using the Azure portal.
44
author: ProfessorKendrick
55
ms.author: kkendrick
66
ms.topic: quickstart
77
ms.date: 04/21/2025
88

99
---
10-
# Quickstart: Create an Azure Native Arize AI Cloud Service resource (preview)
10+
# Quickstart: Create an Azure Native Arize AI Cloud Service resource
1111

1212
This quickstart shows you how to create an Azure Native Arize AI Cloud Service resource using the Azure portal.
1313

@@ -48,9 +48,9 @@ There are required fields (identified with a red asterisk) in each section that
4848

4949
1. Enter the values for each required setting under *ArizeAI Organization Details*.
5050

51-
| Setting | Action |
52-
|-------------------|--------------------------------------------|
53-
|Description | |
51+
| Setting | Action |
52+
|-------------------|-----------------------------------------------|
53+
|Description | Provide a description for your organization. |
5454

5555
1. Select the **Next** button at the bottom of the page.
5656

articles/partner-solutions/arize-ai/manage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Manage an Arize AI resource through the Azure portal (preview)
2+
title: Manage an Arize AI resource through the Azure portal
33
description: Learn how to manage Arize AI resources on the Azure portal.
44

55
ms.topic: how-to
66
ms.date: 04/21/2025
77
---
88

9-
# Manage an Arize AI resource (preview)
9+
# Manage an Arize AI resource
1010

1111
This article describes how to manage the settings for Arize AI resources.
1212

articles/partner-solutions/arize-ai/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: What is Azure Native Arize AI Cloud Service (preview)?
2+
title: What is Azure Native Arize AI Cloud Service?
33
description: Access Azure Native Arize AI Cloud Service via Azure portal to develop, debug, and improve AI applications with enterprise quality using observability and evaluation tools.
44
author: ProfessorKendrick
55
ms.author: kkendrick
66
ms.topic: overview
77
ms.date: 04/21/2025
88
---
9-
# What is Azure Native Arize AI Cloud Service (preview)?
9+
# What is Azure Native Arize AI Cloud Service?
1010

1111
[!INCLUDE [what-is](../includes/what-is.md)]
1212

articles/partner-solutions/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ highlightedContent:
2727
productDirectory:
2828
title: Available Services
2929
items:
30-
- title: Arize AI (preview)
30+
- title: Arize AI
3131
imageSrc: ./media/index/arize-ai.svg
3232
links:
3333
- url: ./arize-ai/overview.md

articles/partner-solutions/partners.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Subscribe to any Azure Native Integration through [Microsoft Azure Marketplace](
1818

1919
|Partner |Description |
2020
|--------------------------------------------------|------------|
21-
|[Arize AI (preview)](arize-ai/overview.md)|A unified AI observability and evaluation platform for tracing, monitoring, and troubleshooting AI applications and agents|
21+
|[Arize AI](arize-ai/overview.md)|A unified AI observability and evaluation platform for tracing, monitoring, and troubleshooting AI applications and agents|
2222
|[LambdaTest - HyperExecute (preview)](lambda-test/overview.md)|An ultra-fast, secure, and scalable test execution platform designed for parallel testing across multiple environments with out-of-the-box AI capabilities to accelerate release cycles with enterprise-grade security.|
2323

2424
## Observability

includes/load-balancer-cross-subscription-add-nic.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ $nic = @{
3636
ResourceGroupName = '<Resource Group Subscription A>'
3737
Location = 'eastus'
3838
IpConfiguration = $IP1Config
39+
LoadBalancerBackendAddressPool = "/subscriptions/<Subscription B ID>/resourceGroups/myResourceGroupLB/providers/Microsoft.Network/loadBalancers/myLoadBalancer/backendAddressPools/BackendPool1"
3940
}
4041
New-AzNetworkInterface @nic
4142
```

includes/load-balancer-cross-subscription-azure-sign-in.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Set-AzContext -Subscription '<Azure Subscription A>'
2727
2828
# Get the Virtual Network information with Get-AzVirtualNetwork
2929
$net = @{
30-
Name = '<vnet name>'
31-
ResourceGroupName = '<Resource Group Subscription A>'
30+
Name = 'virtual-network-subA'
31+
ResourceGroupName = 'resource-group-v2'
3232
}
3333
$vnet = Get-AzVirtualNetwork @net
3434
```

0 commit comments

Comments
 (0)