Skip to content

Commit e29dcc2

Browse files
committed
adding known limitations link
1 parent 7f176aa commit e29dcc2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

articles/governance/resource-graph/concepts/arg-get-list-api.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@ Then use this policy to add query parameters for every request through the clien
187187
internal class ArgGetListHttpPipelinePolicy : HttpPipelineSynchronousPolicy
188188
189189
{
190-
191190
private static const string UseResourceGraph = "useResourceGraph";
192191
public override void OnSendingRequest(HttpMessage message)
193192
@@ -196,11 +195,8 @@ internal class ArgGetListHttpPipelinePolicy : HttpPipelineSynchronousPolicy
196195
if (!message.Request.Uri.ContainsQuery(UseResourceGraph))
197196
{
198197
message.Request.Uri.AppendQuery(UseResourceGraph, bool.TrueString);
199-
200198
}
201-
202199
}
203-
204200
}
205201
```
206202

articles/governance/resource-graph/concepts/guidance-for-throttled-requests.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,10 @@ You should consider the ARG GET/LIST API if your service falls into one (or many
240240
- Competing for throttling quota with other customers.
241241
- Your service may be or is prone to issuing a large burst of concurrent GET requests within a short period of time.
242242
- Your service requires high availability and faster performance for GET requests, for single resource management or enumeration of a list of resources within a certain scope.
243-
- You require full instanceView of VMs and VMSS VMs in Uniform as well as Flex orchestration mode. (Note: ARG GET/LIST API doesn't support VM and VMSS VM Health Status and extension running status in the instanceView. )
243+
- You require full instanceView of VMs and VMSS VMs in Uniform as well as Flex orchestration mode.
244+
245+
> [!NOTE]
246+
> ARG GET/LIST API doesn't support VM and VMSS VM Health Status and extension running status in the instanceView. To learn more about the ARG GET/LIST API limits, see the [known limitations](./arg-get-list-api.md#known-limitations).
244247
245248
If the resource you’re interested in, is in the `resources` table or `computeresources` table, *and* it falls in one of the above categories, then use the [ARG GET/LIST API](./arg-get-list-api.md)
246249

0 commit comments

Comments
 (0)