Description Usage Arguments Value Request syntax
View source: R/applicationinsights_operations.R
Lists the auto-grouped, standalone, and custom components of the application.
1 2 | applicationinsights_list_components(ResourceGroupName, MaxResults,
NextToken)
|
ResourceGroupName |
[required] The name of the resource group. |
MaxResults |
The maximum number of results to return in a single call. To retrieve
the remaining results, make another call with the returned |
NextToken |
The token to request the next page of results. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | list(
ApplicationComponentList = list(
list(
ComponentName = "string",
ComponentRemarks = "string",
ResourceType = "string",
OsType = "WINDOWS"|"LINUX",
Tier = "CUSTOM"|"DEFAULT"|"DOT_NET_CORE"|"DOT_NET_WORKER"|"DOT_NET_WEB_TIER"|"DOT_NET_WEB"|"SQL_SERVER"|"SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP"|"MYSQL"|"POSTGRESQL"|"JAVA_JMX"|"ORACLE",
Monitor = TRUE|FALSE,
DetectedWorkload = list(
list(
"string"
)
)
)
),
NextToken = "string"
)
|
1 2 3 4 5 | svc$list_components(
ResourceGroupName = "string",
MaxResults = 123,
NextToken = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.