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/governance/resource-graph/concepts/query-language.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Understand the query language
3
3
description: Describes Resource Graph tables and the available Kusto data types, operators, and functions usable with Azure Resource Graph.
4
4
author: DCtheGeek
5
5
ms.author: dacoulte
6
-
ms.date: 10/18/2019
6
+
ms.date: 10/21/2019
7
7
ms.topic: conceptual
8
8
ms.service: resource-graph
9
9
---
@@ -29,7 +29,7 @@ from related resource types. Here is the list of tables available in Resource Gr
29
29
|Resource Graph tables |Description |
30
30
|---|---|
31
31
|Resources |The default table if none defined in the query. Most Resource Manager resource types and properties are here. |
32
-
|ResourceContainers |Includes subscription (`Microsoft.Resources/subscriptions`) and resource group (`Microsoft.Resources/subscriptions/resourcegroups`) resource types and data. |
32
+
|ResourceContainers |Includes subscription (in preview -- `Microsoft.Resources/subscriptions`) and resource group (`Microsoft.Resources/subscriptions/resourcegroups`) resource types and data. |
33
33
|AlertsManagementResources |Includes resources _related_ to `Microsoft.AlertsManagement`. |
34
34
|SecurityResources |Includes resources _related_ to `Microsoft.Security`. |
35
35
@@ -62,8 +62,8 @@ the name of the key vault, and the name of the subscription it's in.
62
62
63
63
```kusto
64
64
Resources
65
-
| join (ResourceContainers | where type=='microsoft.resources/subscriptions' | project SubName=name, subscriptionId) on subscriptionId
66
65
| where type == 'microsoft.keyvault/vaults'
66
+
| join (ResourceContainers | where type=='microsoft.resources/subscriptions' | project SubName=name, subscriptionId) on subscriptionId
Copy file name to clipboardExpand all lines: articles/governance/resource-graph/overview.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Overview of Azure Resource Graph
3
3
description: Understand how the Azure Resource Graph service enables complex querying of resources at scale.
4
4
author: DCtheGeek
5
5
ms.author: dacoulte
6
-
ms.date: 05/06/2019
6
+
ms.date: 10/21/2019
7
7
ms.topic: overview
8
8
ms.service: resource-graph
9
9
---
@@ -36,8 +36,12 @@ facilities for calling individual resource providers for detailed properties one
36
36
37
37
With Azure Resource Graph, you can access these properties the resource providers return without
38
38
needing to make individual calls to each resource provider. For a list of supported resource types,
39
-
look for a **Yes** in the [Resources for complete mode deployments](../../azure-resource-manager/complete-mode-deletion.md)
40
-
table. An alternative way to see supported resource types is through the [Azure Resource Graph Explorer Schema browser](./first-query-portal.md#schema-browser).
39
+
look for a **Yes** in the
40
+
[Resources for complete mode deployments](../../azure-resource-manager/complete-mode-deletion.md)
41
+
table. Additional resource types are found in the related
42
+
[Resource Graph tables](./concepts/query-language.md#resource-graph-tables). An alternative way to
43
+
see supported resource types is through the
44
+
[Azure Resource Graph Explorer Schema browser](./first-query-portal.md#schema-browser).
41
45
42
46
With Azure Resource Graph, you can:
43
47
@@ -53,6 +57,13 @@ Resource Graph then updates its database. Resource Graph also does a regular _fu
53
57
ensures that Resource Graph data is current if there are missed notifications or when a resource is
54
58
updated outside of Resource Manager.
55
59
60
+
> [!NOTE]
61
+
> Resource Graph uses a `GET` to the latest non-preview API of each resource provider to gather
62
+
> properties and values. As a result, the property expected may not be available. In some cases, the
63
+
> API version used has been overridden to provide more current or widely used properties in the
64
+
> results. See the [Show API version for each resource type](./samples/advanced.md#apiversion)
65
+
> sample for a complete list in your environment.
66
+
56
67
## The query language
57
68
58
69
Now that you have a better understanding of what Azure Resource Graph is, let's dive into how to
0 commit comments