Skip to content

Describe Component

applicationinsights_describe_component R Documentation

Describes a component and lists the resources that are grouped together in a component

Description

Describes a component and lists the resources that are grouped together in a component.

Usage

applicationinsights_describe_component(ResourceGroupName, ComponentName,
  AccountId)

Arguments

ResourceGroupName

[required] The name of the resource group.

ComponentName

[required] The name of the component.

AccountId

The AWS account ID for the resource group owner.

Value

A list with the following syntax:

list(
  ApplicationComponent = 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"|"SAP_HANA_MULTI_NODE"|"SAP_HANA_SINGLE_NODE"|"SAP_HANA_HIGH_AVAILABILITY"|"SQL_SERVER_FAILOVER_CLUSTER_INSTANCE"|"SHAREPOINT"|"ACTIVE_DIRECTORY"|"SAP_NETWEAVER_STANDARD"|"SAP_NETWEAVER_DISTRIBUTED"|"SAP_NETWEAVER_HIGH_AVAILABILITY",
    Monitor = TRUE|FALSE,
    DetectedWorkload = list(
      list(
        "string"
      )
    )
  ),
  ResourceList = list(
    "string"
  )
)

Request syntax

svc$describe_component(
  ResourceGroupName = "string",
  ComponentName = "string",
  AccountId = "string"
)