Learn R Programming

paws.management (version 0.1.12)

applicationinsights_list_components: Lists the auto-grouped, standalone, and custom components of the application

Description

Lists the auto-grouped, standalone, and custom components of the application.

Usage

applicationinsights_list_components(ResourceGroupName, MaxResults,
  NextToken)

Value

A list with the following syntax:

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"
)

Arguments

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 value.

NextToken

The token to request the next page of results.

Request syntax

svc$list_components(
  ResourceGroupName = "string",
  MaxResults = 123,
  NextToken = "string"
)