Learn R Programming

paws.management (version 0.1.6)

applicationinsights_update_component_configuration: Updates the monitoring configurations for the component

Description

Updates the monitoring configurations for the component. The configuration input parameter is an escaped JSON of the configuration and should match the schema of what is returned by DescribeComponentConfigurationRecommendation.

Usage

applicationinsights_update_component_configuration(ResourceGroupName,
  ComponentName, Monitor, Tier, ComponentConfiguration)

Arguments

ResourceGroupName

[required] The name of the resource group.

ComponentName

[required] The name of the component.

Monitor

Indicates whether the application component is monitored.

Tier

The tier of the application component. Supported tiers include DOT_NET_WORKER, DOT_NET_WEB, DOT_NET_CORE, SQL_SERVER, and DEFAULT.

ComponentConfiguration

The configuration settings of the component. The value is the escaped JSON of the configuration. For more information about the JSON format, see Working with JSON. You can send a request to DescribeComponentConfigurationRecommendation to see the recommended configuration for a component. For the complete format of the component configuration file, see Component Configuration.

Request syntax

svc$update_component_configuration(
  ResourceGroupName = "string",
  ComponentName = "string",
  Monitor = TRUE|FALSE,
  Tier = "DEFAULT"|"DOT_NET_CORE"|"DOT_NET_WORKER"|"DOT_NET_WEB"|"SQL_SERVER",
  ComponentConfiguration = "string"
)