Values.UpdateComponentConfigurationRequestSourceUpdates 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.
type nonrec t = {resourceGroupName : ResourceGroupName.t;The name of the resource group.
*)componentName : ComponentName.t;The name of the component.
*)monitor : Monitor.t option;Indicates whether the application component is monitored.
*)tier : Tier.t option;The tier of the application component.
*)componentConfiguration : ComponentConfiguration.t option;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.
*)autoConfigEnabled : AutoConfigEnabled.t option;Automatically configures the component by applying the recommended configurations.
*)}val make :
?monitor:??? ->
?tier:??? ->
?componentConfiguration:??? ->
?autoConfigEnabled:??? ->
resourceGroupName:ResourceGroupName.t ->
componentName:ComponentName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Monitor.t
| `Enum of string
| `String of ResourceGroupName.t ])
list ]